mirror of
https://github.com/git-touch/git-touch
synced 2024-12-16 10:20:55 +01:00
12 lines
251 B
Dart
12 lines
251 B
Dart
// import 'dart:async';
|
|
// import 'dart:convert';
|
|
// import '../utils.dart';
|
|
import 'package:flutter/cupertino.dart';
|
|
|
|
class IosNotificationTab extends StatelessWidget {
|
|
@override
|
|
Widget build(context) {
|
|
return new Text('Notification');
|
|
}
|
|
}
|