-
Notifications
You must be signed in to change notification settings - Fork 0
/
splash_screen.dart
62 lines (56 loc) · 1.57 KB
/
splash_screen.dart
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
import 'dart:async';
// import 'package:demo/onboarding_screen.dart';
import 'package:demo/onboarding_screen.dart';
import 'package:flutter/material.dart';
class SplashScreen extends StatefulWidget {
@override
State<StatefulWidget> createState() => StartState();
}
class StartState extends State<SplashScreen> {
@override
Widget build(BuildContext context) {
return initScreen(context);
}
@override
void initState() {
super.initState();
startTimer();
}
startTimer() async {
var duration = Duration(seconds: 5);
return new Timer(duration, route);
}
route() {
Navigator.pushReplacement(
context, MaterialPageRoute(builder: (context) => OnboardingScreen()));
}
initScreen(BuildContext context) {
return Scaffold(
backgroundColor: Colors.white,
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Container(
child: Image.asset('assets/images/logo.png'),
),
Padding(padding: EdgeInsets.only(top: 20.0)),
Text(
"BOOVA",
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 30.0,
color: Colors.black,
),
),
Padding(padding: EdgeInsets.only(top: 20.0)),
CircularProgressIndicator(
backgroundColor: Colors.black,
strokeWidth: 1,
)
],
),
),
);
}
}