-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathonboarding1.dart
More file actions
66 lines (64 loc) · 1.96 KB
/
Copy pathonboarding1.dart
File metadata and controls
66 lines (64 loc) · 1.96 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
import 'package:flutter/material.dart';
void main() {
runApp(onboarding1());
}
class onboarding1 extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
backgroundColor: Colors.deepPurple,
body: Stack(
children: <Widget>[
Container(
margin: EdgeInsets.fromLTRB(80.0, 360.0 , 0, 0),
child: Text('WELCOME TO FPL',
style: TextStyle(
fontWeight: FontWeight.bold,
color: Colors.deepOrange,
fontSize: 30.0,
),
),
),
Container(
margin: EdgeInsets.fromLTRB(20.0, 460.0 , 0, 0),
child: Text('''"IF YOU RISK NOTHING, THEN YOU RISK EVERYTHING"''',
style: TextStyle(
fontWeight: FontWeight.bold,
color: Colors.deepOrange,
fontSize: 15.0,
),
),
),
Container(
width: 300,
margin: EdgeInsets.fromLTRB(55.0, 500, 0, 0),
child: RaisedButton(onPressed: () {},
color: Colors.orange,
child: Text('LOG IN',
style: TextStyle(
fontSize: 20.0,
color: Colors.black54
),
),
),
),
Container(
width: 300,
margin: EdgeInsets.fromLTRB(55.0, 550, 0, 0),
child: RaisedButton(onPressed: () {},
color: Colors.orange,
child: Text('SIGN UP',
style: TextStyle(
fontSize: 20.0,
color: Colors.black54
),
),
),
),
],
),
),
);
}
}