Merge branch 'dev' of github.com:refilc/naplo into dev
Before Width: | Height: | Size: 252 KiB After Width: | Height: | Size: 696 KiB |
Before Width: | Height: | Size: 230 KiB After Width: | Height: | Size: 616 KiB |
Before Width: | Height: | Size: 370 KiB After Width: | Height: | Size: 1009 KiB |
Before Width: | Height: | Size: 204 KiB After Width: | Height: | Size: 549 KiB |
@ -54,7 +54,7 @@ class LoginScreenState extends State<LoginScreen> {
|
|||||||
SystemChrome.setSystemUIOverlayStyle(const SystemUiOverlayStyle(
|
SystemChrome.setSystemUIOverlayStyle(const SystemUiOverlayStyle(
|
||||||
statusBarColor: Colors.transparent,
|
statusBarColor: Colors.transparent,
|
||||||
statusBarIconBrightness: Brightness.light,
|
statusBarIconBrightness: Brightness.light,
|
||||||
systemNavigationBarColor: Colors.white,
|
systemNavigationBarColor: Color(0xFFDAE4F7),
|
||||||
systemNavigationBarIconBrightness: Brightness.dark,
|
systemNavigationBarIconBrightness: Brightness.dark,
|
||||||
));
|
));
|
||||||
|
|
||||||
@ -196,24 +196,24 @@ class LoginScreenState extends State<LoginScreen> {
|
|||||||
],
|
],
|
||||||
),
|
),
|
||||||
Container(
|
Container(
|
||||||
height: 300,
|
height: 310,
|
||||||
width: double.infinity,
|
width: double.infinity,
|
||||||
decoration: const BoxDecoration(
|
decoration: const BoxDecoration(
|
||||||
gradient: LinearGradient(
|
gradient: LinearGradient(
|
||||||
colors: [Color(0x00DAE4F7), Color(0xFFDAE4F7)],
|
colors: [Color(0x00DAE4F7), Color(0xFFDAE4F7)],
|
||||||
stops: [0, 0.12],
|
stops: [0, 0.24],
|
||||||
begin: Alignment.topCenter,
|
begin: Alignment.topCenter,
|
||||||
end: Alignment.bottomCenter,
|
end: Alignment.bottomCenter,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: EdgeInsets.only(
|
padding: EdgeInsets.only(
|
||||||
top: 50,
|
top: 90,
|
||||||
bottom: MediaQuery.of(context).viewInsets.bottom),
|
bottom: MediaQuery.of(context).viewInsets.bottom),
|
||||||
child: Column(
|
child: Column(
|
||||||
children: [
|
children: [
|
||||||
SizedBox(
|
SizedBox(
|
||||||
height: 48,
|
height: 52,
|
||||||
width: double.infinity,
|
width: double.infinity,
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: const EdgeInsets.symmetric(
|
padding: const EdgeInsets.symmetric(
|
||||||
@ -244,7 +244,7 @@ class LoginScreenState extends State<LoginScreen> {
|
|||||||
width:
|
width:
|
||||||
MediaQuery.of(context).size.width *
|
MediaQuery.of(context).size.width *
|
||||||
0.75,
|
0.75,
|
||||||
height: 50.0,
|
height: 60.0,
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
// image: const DecorationImage(
|
// image: const DecorationImage(
|
||||||
// image:
|
// image:
|
||||||
@ -284,7 +284,7 @@ class LoginScreenState extends State<LoginScreen> {
|
|||||||
style: const TextStyle(
|
style: const TextStyle(
|
||||||
color: Colors.white,
|
color: Colors.white,
|
||||||
fontWeight: FontWeight.bold,
|
fontWeight: FontWeight.bold,
|
||||||
fontSize: 15.0,
|
fontSize: 14.0,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
@ -292,7 +292,7 @@ class LoginScreenState extends State<LoginScreen> {
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
const SizedBox(height: 8),
|
const SizedBox(height: 17),
|
||||||
// privacy policy
|
// privacy policy
|
||||||
GestureDetector(
|
GestureDetector(
|
||||||
onTap: () => PrivacyView.show(context),
|
onTap: () => PrivacyView.show(context),
|
||||||
|