|
|
@ -1,5 +1,6 @@ |
|
|
|
import 'package:Envelope/models/my_profile.dart'; |
|
|
|
import 'package:flutter/material.dart'; |
|
|
|
import 'package:flutter/services.dart'; |
|
|
|
import 'package:flutter_dotenv/flutter_dotenv.dart'; |
|
|
|
import '/views/main/home.dart'; |
|
|
|
import '/views/authentication/unauthenticated_landing.dart'; |
|
|
@ -31,78 +32,143 @@ class MyApp extends StatelessWidget { |
|
|
|
'/signup': (context) => const Signup(), |
|
|
|
}, |
|
|
|
home: const Scaffold( |
|
|
|
body: SafeArea( |
|
|
|
child: Home(), |
|
|
|
) |
|
|
|
), |
|
|
|
body: SafeArea( |
|
|
|
child: Home(), |
|
|
|
) |
|
|
|
), |
|
|
|
theme: ThemeData( |
|
|
|
brightness: Brightness.light, |
|
|
|
primaryColor: const Color(0xff014bff), |
|
|
|
backgroundColor: Colors.grey[300], |
|
|
|
scaffoldBackgroundColor: Colors.grey.shade100, |
|
|
|
disabledColor: Colors.grey[700], |
|
|
|
hintColor: Colors.grey.shade700, |
|
|
|
|
|
|
|
colorScheme: ColorScheme( |
|
|
|
brightness: Brightness.light, |
|
|
|
primaryColor: Colors.red, |
|
|
|
appBarTheme: const AppBarTheme( |
|
|
|
backgroundColor: Colors.cyan, |
|
|
|
elevation: 0, |
|
|
|
primary: const Color(0xff014bff), |
|
|
|
onPrimary: Colors.white, |
|
|
|
secondary: const Color(0xff1a6dff), |
|
|
|
onSecondary: Colors.black, |
|
|
|
tertiary: const Color(0xff3490ff), |
|
|
|
onTertiary: Colors.black, |
|
|
|
error: Colors.red, |
|
|
|
onError: Colors.white, |
|
|
|
background: Colors.grey.shade300, |
|
|
|
onBackground: Colors.black, |
|
|
|
surface: Colors.grey.shade100, |
|
|
|
onSurface: Colors.black, |
|
|
|
), |
|
|
|
|
|
|
|
appBarTheme: AppBarTheme( |
|
|
|
color: Colors.grey.shade100, |
|
|
|
foregroundColor: Colors.white, |
|
|
|
iconTheme: const IconThemeData( |
|
|
|
color: Colors.black, |
|
|
|
), |
|
|
|
toolbarTextStyle: const TextStyle( |
|
|
|
color: Colors.black, |
|
|
|
), |
|
|
|
|
|
|
|
systemOverlayStyle: const SystemUiOverlayStyle( |
|
|
|
statusBarColor: Colors.black, |
|
|
|
|
|
|
|
statusBarIconBrightness: Brightness.light, |
|
|
|
statusBarBrightness: Brightness.light, |
|
|
|
) |
|
|
|
), |
|
|
|
|
|
|
|
iconTheme: const IconThemeData(color: Colors.black), |
|
|
|
|
|
|
|
inputDecorationTheme: InputDecorationTheme( |
|
|
|
filled: true, |
|
|
|
fillColor: Colors.white, |
|
|
|
labelStyle: const TextStyle( |
|
|
|
color: Colors.black, |
|
|
|
fontSize: 30, |
|
|
|
), |
|
|
|
inputDecorationTheme: const InputDecorationTheme( |
|
|
|
labelStyle: TextStyle( |
|
|
|
color: Colors.white, |
|
|
|
fontSize: 30, |
|
|
|
), |
|
|
|
filled: false, |
|
|
|
hintStyle: TextStyle( |
|
|
|
color: Colors.grey.shade600, |
|
|
|
), |
|
|
|
iconColor: Colors.grey.shade500, |
|
|
|
contentPadding: const EdgeInsets.all(8), |
|
|
|
enabledBorder: OutlineInputBorder( |
|
|
|
borderRadius: BorderRadius.circular(15), |
|
|
|
borderSide: const BorderSide( |
|
|
|
color: Colors.transparent, |
|
|
|
) |
|
|
|
), |
|
|
|
focusedBorder: OutlineInputBorder( |
|
|
|
borderRadius: BorderRadius.circular(15), |
|
|
|
borderSide: const BorderSide( |
|
|
|
color: Colors.transparent, |
|
|
|
) |
|
|
|
), |
|
|
|
), |
|
|
|
), |
|
|
|
darkTheme: ThemeData( |
|
|
|
darkTheme: ThemeData( |
|
|
|
brightness: Brightness.dark, |
|
|
|
primaryColor: Colors.orange.shade900, |
|
|
|
primaryColor: const Color(0xffff4a27), |
|
|
|
backgroundColor: Colors.grey.shade800, |
|
|
|
scaffoldBackgroundColor: Colors.grey[850], |
|
|
|
disabledColor: Colors.grey[400], |
|
|
|
hintColor: Colors.grey.shade400, |
|
|
|
|
|
|
|
colorScheme: ColorScheme( |
|
|
|
brightness: Brightness.dark, |
|
|
|
primary: Colors.orange.shade900, |
|
|
|
onPrimary: Colors.white, |
|
|
|
secondary: Colors.orange.shade900, |
|
|
|
onSecondary: Colors.white, |
|
|
|
tertiary: Colors.grey.shade500, |
|
|
|
onTertiary: Colors.black, |
|
|
|
error: Colors.red, |
|
|
|
onError: Colors.white, |
|
|
|
background: Colors.grey.shade900, |
|
|
|
onBackground: Colors.white, |
|
|
|
surface: Colors.grey.shade700, |
|
|
|
onSurface: Colors.white, |
|
|
|
brightness: Brightness.dark, |
|
|
|
primary: const Color(0xffff4a27), |
|
|
|
onPrimary: Colors.white, |
|
|
|
secondary: const Color(0xffff5f3a), |
|
|
|
onSecondary: Colors.white, |
|
|
|
tertiary: const Color(0xffff7950), |
|
|
|
onTertiary: Colors.black, |
|
|
|
error: Colors.red, |
|
|
|
onError: Colors.white, |
|
|
|
background: Colors.grey.shade900, |
|
|
|
onBackground: Colors.white, |
|
|
|
surface: Colors.grey.shade700, |
|
|
|
onSurface: Colors.white, |
|
|
|
), |
|
|
|
|
|
|
|
appBarTheme: AppBarTheme( |
|
|
|
color: Colors.grey.shade800, |
|
|
|
iconTheme: IconThemeData( |
|
|
|
color: Colors.grey.shade400 |
|
|
|
), |
|
|
|
hintColor: Colors.grey.shade500, |
|
|
|
inputDecorationTheme: InputDecorationTheme( |
|
|
|
filled: true, |
|
|
|
fillColor: Colors.grey.shade800, |
|
|
|
hintStyle: TextStyle( |
|
|
|
color: Colors.grey.shade500, |
|
|
|
), |
|
|
|
iconColor: Colors.grey.shade500, |
|
|
|
contentPadding: const EdgeInsets.all(8), |
|
|
|
enabledBorder: OutlineInputBorder( |
|
|
|
borderRadius: BorderRadius.circular(15), |
|
|
|
borderSide: const BorderSide( |
|
|
|
color: Colors.transparent, |
|
|
|
) |
|
|
|
), |
|
|
|
focusedBorder: OutlineInputBorder( |
|
|
|
borderRadius: BorderRadius.circular(15), |
|
|
|
borderSide: const BorderSide( |
|
|
|
color: Colors.transparent, |
|
|
|
) |
|
|
|
), |
|
|
|
toolbarTextStyle: TextStyle( |
|
|
|
color: Colors.grey.shade400 |
|
|
|
), |
|
|
|
systemOverlayStyle: const SystemUiOverlayStyle( |
|
|
|
statusBarColor: Colors.black, |
|
|
|
|
|
|
|
statusBarIconBrightness: Brightness.dark, |
|
|
|
statusBarBrightness: Brightness.dark, |
|
|
|
) |
|
|
|
), |
|
|
|
|
|
|
|
iconTheme: const IconThemeData(color: Colors.white), |
|
|
|
|
|
|
|
inputDecorationTheme: InputDecorationTheme( |
|
|
|
filled: true, |
|
|
|
fillColor: Colors.grey.shade800, |
|
|
|
hintStyle: TextStyle( |
|
|
|
color: Colors.grey.shade500, |
|
|
|
), |
|
|
|
appBarTheme: AppBarTheme( |
|
|
|
color: Colors.grey.shade800, |
|
|
|
iconTheme: IconThemeData( |
|
|
|
color: Colors.grey.shade400 |
|
|
|
), |
|
|
|
toolbarTextStyle: TextStyle( |
|
|
|
color: Colors.grey.shade400 |
|
|
|
), |
|
|
|
iconColor: Colors.grey.shade500, |
|
|
|
contentPadding: const EdgeInsets.all(8), |
|
|
|
enabledBorder: OutlineInputBorder( |
|
|
|
borderRadius: BorderRadius.circular(15), |
|
|
|
borderSide: const BorderSide( |
|
|
|
color: Colors.transparent, |
|
|
|
) |
|
|
|
), |
|
|
|
focusedBorder: OutlineInputBorder( |
|
|
|
borderRadius: BorderRadius.circular(15), |
|
|
|
borderSide: const BorderSide( |
|
|
|
color: Colors.transparent, |
|
|
|
) |
|
|
|
), |
|
|
|
), |
|
|
|
), |
|
|
|
); |
|
|
|
} |
|
|
|