-
Notifications
You must be signed in to change notification settings - Fork 113
/
Copy pathmain.dart
168 lines (161 loc) · 4.62 KB
/
main.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const MyHomePage(),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({Key? key}) : super(key: key);
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
get icon => null;
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
leading: IconButton(
onPressed: () {},
icon: const Icon(Icons.arrow_back_rounded, color: Colors.black)),
elevation: 0,
backgroundColor: Colors.transparent,
),
body: Container(
height: 800,
width: double.infinity,
padding: const EdgeInsets.all(25),
//color: Colors.g,
child: Column(
children: [
const Align(
child: Text(
'Edit Profile',
style: TextStyle(
fontSize: 30,
fontWeight: FontWeight.w800,
),
),
alignment: Alignment.centerLeft,
),
const SizedBox(
height: 20,
),
const CircleAvatar(
backgroundImage:
AssetImage('assets/065f106a8a83500e7e5fa3a12b7bef5d.jpg'),
radius: 70,
),
const Spacer(),
Row(
children: const [
Text(
'username',
style: TextStyle(color: Colors.black87, fontSize: 17),
),
Spacer(),
Text(
'Amanda',
style: TextStyle(color: Colors.black87, fontSize: 17),
),
],
),
const Spacer(),
const Divider(
color: Colors.black12,
thickness: 2.0,
),
const Spacer(),
Row(
children: const [
Text(
'Email',
style: TextStyle(color: Colors.black87, fontSize: 17),
),
Spacer(),
Text(
style: TextStyle(color: Colors.black87, fontSize: 17),
),
],
),
const Spacer(),
const Divider(
color: Colors.black12,
thickness: 2.0,
),
const Spacer(),
Row(
children: const [
Text(
'Phone',
style: TextStyle(color: Colors.black87, fontSize: 17),
),
Spacer(),
Text(
'****999****',
style: TextStyle(color: Colors.black87, fontSize: 17),
),
],
),
const Spacer(),
const Divider(
color: Colors.black12,
thickness: 2.0,
),
const Spacer(),
Row(
children: const [
Text(
'Date of Birth',
style: TextStyle(color: Colors.black87, fontSize: 17),
),
Spacer(),
Text(
'20/09/2001',
style: TextStyle(color: Colors.black),
),
],
),
const Spacer(),
const Divider(
color: Colors.black12,
thickness: 2.0,
),
const Spacer(),
Row(
children: const [
Text(
'Address',
style: TextStyle(color: Colors.black87, fontSize: 17),
),
Spacer(),
Text(
'123 Royal Street, NewYork',
style: TextStyle(color: Colors.black87, fontSize: 17),
),
],
),
const Spacer(),
const Divider(
color: Colors.black12,
thickness: 2.0,
),
],
),
),
);
}
}