forked from gdscgcu/Learn-with-Hacktoberfest
-
Notifications
You must be signed in to change notification settings - Fork 1
/
landingpage.dart
71 lines (67 loc) · 1.9 KB
/
landingpage.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
63
64
65
66
67
68
69
70
71
import 'package:flutter/material.dart';
import '../routes.dart';
class LandingPage extends StatelessWidget {
const LandingPage({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: Colors.white,
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Spacer(
flex: 3,
),
Image(
image: AssetImage("images/imgw 2.jpeg"),
),
SizedBox(
height: 50,
),
Text(
"Weather",
style: TextStyle(
fontSize: MediaQuery.of(context).size.width / 8,
fontWeight: FontWeight.bold,
color: Colors.black54),
),
Text(
"Forecast",
style: TextStyle(
fontSize: MediaQuery.of(context).size.width / 8,
color: Colors.black54),
),
Spacer(flex: 4,),
GestureDetector(
onTap: (){
Navigator.pushNamed(context, Routes.home);
},
child: Container(
width: 160,
height: 50,
decoration: BoxDecoration(
color: Colors.black54,
borderRadius: BorderRadius.circular(25),
),
child: Center(child: Text("Get Started", style: TextStyle(color: Colors.white),)),
),
),
SizedBox(
height: 20,
),
GestureDetector(
onTap: (){
},
child: Text("Create an account", style: TextStyle(color: Colors.black54
),),
),
Spacer(
flex: 4,
),
],
),
),
);
}
}