Flutter 登录页-14

源码下载

依赖包

  • google_fonts

ClipPath的使用

应用自定义ClipPath之前是头部图片是一个矩形

1
2
3
4
5
6
7
8
ClipPath(
clipper: null,
child: SizedBox(
width: double.infinity,
height: MediaQuery.of(context).size.height * 2.9 / 10,
child: Image.asset("assets/bg.png"),
),
)

应用自定义ClipPath之后的效果如下图

自定义ClipPath类
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class BannerClipPath extends CustomClipper<Path> {
@override
Path getClip(Size size) {
var path = Path()
..lineTo(0, size.height - 100)
// 底部曲线
..quadraticBezierTo(size.width / 2, size.height, size.width, size.height - 100)
..lineTo(size.width, 0)
..close();
return path;
}

@override
bool shouldReclip(covariant CustomClipper<Path> oldClipper) {
return true;
}
}
使用自定义的ClipPath
1
2
3
4
5
6
7
8
ClipPath(
clipper: BannerClipPath(),
child: SizedBox(
width: double.infinity,
height: MediaQuery.of(context).size.height * 2.9 / 10,
child: Image.asset("assets/bg.png"),
),
)

阴影圆角矩形

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
Container(
height: 107,
width: 107,
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(35),
color: Colors.white,
boxShadow: const [
BoxShadow(
color: Color(0xffbec2ce),
offset: Offset(0, 10),
blurRadius: 10,
),
],
),
child: Center(
child: Text(
"C",
style: GoogleFonts.raleway(
fontWeight: FontWeight.bold,
fontSize: 72,
color: const Color(0xff6133fe),
),
),
),
),

带文字的分隔线

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
Padding(
padding: const EdgeInsets.symmetric(horizontal: 60),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: const [
Expanded(
child: Divider(
color: Color(0xffefefef),
thickness: 1.2,
),
),
Text(
" OR ",
style: TextStyle(
fontFamily: "SFUIDisplay",
fontSize: 14,
backgroundColor: Colors.white,
fontWeight: FontWeight.w200,
),
),
Expanded(
child: Divider(
color: Color(0xffefefef),
thickness: 1.2,
),
),
],
),
)

完整代码

main.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import 'package:flutter/material.dart';
import 'package:login_14/homepage.dart';

void main() => runApp(const MyApp());

class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);

@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'My App',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const HomePage(),
);
}
}
homepage.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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
import 'package:flutter/material.dart';
import 'package:google_fonts/google_fonts.dart';

class HomePage extends StatefulWidget {
const HomePage({Key? key}) : super(key: key);

@override
State<HomePage> createState() => _HomePageState();
}

class _HomePageState extends State<HomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
body: Container(
height: double.infinity,
color: Colors.white,
child: Stack(
children: [
// 头部Banner图片
ClipPath(
clipper: BannerClipPath(),
child: SizedBox(
width: double.infinity,
height: MediaQuery.of(context).size.height * 2.9 / 10,
child: Image.asset("assets/bg.png"),
),
),
Padding(
padding: const EdgeInsets.only(top: 120, left: 40, right: 40),
// 中间圆角矩形
child: Column(
children: [
const SizedBox(height: 19),
Container(
height: 107,
width: 107,
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(35),
color: Colors.white,
boxShadow: const [
BoxShadow(
color: Color(0xffbec2ce),
offset: Offset(0, 10),
blurRadius: 10,
),
],
),
child: Center(
child: Text(
"C",
style: GoogleFonts.raleway(
fontWeight: FontWeight.bold,
fontSize: 72,
color: const Color(0xff6133fe),
),
),
),
),
Text(
"Code Decoders",
style: GoogleFonts.montserrat(
fontSize: 32,
fontWeight: FontWeight.w900,
wordSpacing: 2,
color: const Color(0xffa6aebc),
),
),
const SizedBox(height: 40),
TextFormField(
decoration: InputDecoration(
border: OutlineInputBorder(
borderSide: const BorderSide(
color: Color(0xffe1e4e8),
),
borderRadius: BorderRadius.circular(8),
),
enabledBorder: OutlineInputBorder(
borderSide: const BorderSide(
color: Color(0xffe1e4e8),
),
borderRadius: BorderRadius.circular(8),
),
focusedBorder: OutlineInputBorder(
borderSide: const BorderSide(
color: Color(0xffe1e4e8),
),
borderRadius: BorderRadius.circular(8),
),
errorBorder: OutlineInputBorder(
borderSide: const BorderSide(
color: Color(0xffe1e4e8),
),
borderRadius: BorderRadius.circular(8),
),
labelText: "Username",
labelStyle: GoogleFonts.raleway(
fontSize: 14,
fontWeight: FontWeight.w600,
color: const Color(0xffa6aebc),
),
),
style: GoogleFonts.raleway(
fontSize: 14,
fontWeight: FontWeight.w600,
color: const Color(0xffa6aebc),
),
),
const SizedBox(height: 20),
TextFormField(
decoration: InputDecoration(
border: OutlineInputBorder(
borderSide: const BorderSide(
color: Color(0xffe1e4e8),
),
borderRadius: BorderRadius.circular(8),
),
enabledBorder: OutlineInputBorder(
borderSide: const BorderSide(
color: Color(0xffe1e4e8),
),
borderRadius: BorderRadius.circular(8),
),
focusedBorder: OutlineInputBorder(
borderSide: const BorderSide(
color: Color(0xffe1e4e8),
),
borderRadius: BorderRadius.circular(8),
),
errorBorder: OutlineInputBorder(
borderSide: const BorderSide(
color: Color(0xffe1e4e8),
),
borderRadius: BorderRadius.circular(8),
),
labelText: "Password",
labelStyle: GoogleFonts.raleway(
fontSize: 14,
fontWeight: FontWeight.w600,
color: const Color(0xffa6aebc),
),
),
style: GoogleFonts.raleway(
fontSize: 14,
fontWeight: FontWeight.w600,
color: const Color(0xffa6aebc),
),
obscureText: true,
),
const SizedBox(height: 40),
SizedBox(
height: 50,
width: double.infinity,
child: MaterialButton(
onPressed: () {},
child: Text(
"Sign in",
style: GoogleFonts.montserrat(
fontWeight: FontWeight.w600,
fontSize: 16,
color: Colors.white,
),
),
color: const Color(0xff6133fe),
elevation: 0,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(5),
),
),
),
const SizedBox(height: 30),
// 分隔线
Padding(
padding: const EdgeInsets.symmetric(horizontal: 60),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: const [
Expanded(
child: Divider(
color: Color(0xffefefef),
thickness: 1.2,
),
),
Text(
" OR ",
style: TextStyle(
fontFamily: "SFUIDisplay",
fontSize: 14,
backgroundColor: Colors.white,
fontWeight: FontWeight.w200,
),
),
Expanded(
child: Divider(
color: Color(0xffefefef),
thickness: 1.2,
),
),
],
),
),
const SizedBox(height: 30),
Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
Image.asset("assets/fb.png"),
Image.asset("assets/Twitter.png"),
Image.asset("assets/G+.png"),
],
),
const SizedBox(height: 15),
Center(
child: Text(
"Don't have an account?",
style: GoogleFonts.raleway(
fontWeight: FontWeight.w500,
fontSize: 15,
color: const Color(0xff707070),
),
),
),
Center(
child: Text(
"Sign Up",
style: GoogleFonts.raleway(
fontWeight: FontWeight.w500,
fontSize: 15,
color: const Color(0xff6133fe),
),
),
),
],
),
),
],
),
),
);
}
}

class BannerClipPath extends CustomClipper<Path> {
@override
Path getClip(Size size) {
var path = Path()
..lineTo(0, size.height - 100)
// 底部曲线
..quadraticBezierTo(size.width / 2, size.height, size.width, size.height - 100)
..lineTo(size.width, 0)
..close();
return path;
}

@override
bool shouldReclip(covariant CustomClipper<Path> oldClipper) {
return true;
}
}