forked from fayaz07/ots
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.dart
More file actions
84 lines (77 loc) · 2.19 KB
/
main.dart
File metadata and controls
84 lines (77 loc) · 2.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:ots/ots.dart';
void main() => runApp(
MyApp(),
);
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return OTS(
showNetworkUpdates: true,
persistNoInternetNotification: false,
/// pass your custom loader here
// loader: CircularProgressIndicator(
// valueColor: AlwaysStoppedAnimation<Color>(Colors.red),
// ),
// child: MaterialApp(
// title: 'OTS Test',
// home: Home(),
// ),
child: CupertinoApp(
title: 'OTS Test',
home: Home(),
),
);
}
}
final textStyle = TextStyle(color: Colors.white);
class Home extends StatefulWidget {
@override
_HomeState createState() => _HomeState();
}
class _HomeState extends State<Home> {
@override
Widget build(BuildContext context) {
return Scaffold(
body: Padding(
padding: const EdgeInsets.all(8.0),
child: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
ElevatedButton(
child: Text('Show Notification', style: textStyle),
onPressed: () {
showNotification(
message: 'Hello, this is notification',
title: 'Test',
backgroundColor: Colors.green,
autoDismissible: true,
notificationDuration: 2500,
);
},
),
ElevatedButton(
child: Text('Show Loader', style: textStyle),
onPressed: () async {
showLoader(
isModal: true,
);
await Future.delayed(Duration(seconds: 3));
hideLoader();
},
),
ElevatedButton(
child: Text('Show Toast', style: textStyle),
onPressed: () async {
bakeToast("Hey info!", type: ToastType.info);
},
),
],
),
),
),
);
}
}