Merge branch 'diplomatic-quarter-haroon' into 'diplomatic-quarter-live'

Diplomatic quarter haroon

See merge request Cloud_Solution/diplomatic-quarter!81
fix_login
Mohammad Aljammal 4 years ago
commit 38e206e7a5

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

@ -81,8 +81,8 @@ class MyApp extends StatelessWidget {
iconTheme: IconThemeData(), iconTheme: IconThemeData(),
appBarTheme: AppBarTheme( appBarTheme: AppBarTheme(
color: Colors.grey[700], color: Colors.grey[700],
brightness: Brightness.light, brightness: Brightness.dark,
elevation: 0.0, elevation: 10.0,
actionsIconTheme: IconThemeData( actionsIconTheme: IconThemeData(
color: Colors.grey[800], color: Colors.grey[800],
), ),

@ -235,7 +235,7 @@ class _DocAvailableAppointmentsState extends State<DocAvailableAppointments>
return children; return children;
}, },
), ),
onDaySelected: (date, events,format) { onDaySelected: (date, events) {
_onDaySelected(date, events); _onDaySelected(date, events);
_animationController.forward(from: 0.0); _animationController.forward(from: 0.0);
}, },

@ -348,7 +348,7 @@ class _CovidTimeSlotsState extends State<CovidTimeSlots>
return children; return children;
}, },
), ),
onDaySelected: (date, event,formats) { onDaySelected: (date, event) {
_onDaySelected(date, event,); _onDaySelected(date, event,);
_animationController.forward(from: 0.0); _animationController.forward(from: 0.0);
}, },

@ -28,14 +28,16 @@ class LoginType extends StatelessWidget {
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[ children: <Widget>[
Image.asset( Image.asset(
'assets/images/habib-logo.png', 'assets/images/DQ/dq_logo_icon.png',
height: 80, height: 90,
width: 80, width: 90,
), ),
AppText( AppText(
TranslationBase.of(context).logintypeRadio, TranslationBase.of(context).logintypeRadio,
fontSize: SizeConfig.textMultiplier * 3.5, fontSize: SizeConfig.textMultiplier * 3.5,
textAlign: TextAlign.left, textAlign: TextAlign.left,
marginBottom: 20.0,
marginTop: 20.0,
), ),
Row( Row(
mainAxisAlignment: MainAxisAlignment.center, mainAxisAlignment: MainAxisAlignment.center,

@ -94,7 +94,7 @@ class _Login extends State<Login> {
loginType == 1 loginType == 1
? Icons.chrome_reader_mode ? Icons.chrome_reader_mode
: Icons.receipt, : Icons.receipt,
color: Colors.red), color: Color(0xFF40ACC9)),
padding: EdgeInsets.only( padding: EdgeInsets.only(
top: 20, bottom: 20, left: 10, right: 10), top: 20, bottom: 20, left: 10, right: 10),
hintText: loginType == 1 hintText: loginType == 1

@ -76,7 +76,7 @@ class _Register extends State<Register> {
controller: nationalIDorFile, controller: nationalIDorFile,
onChanged: (value) => validateForm(), onChanged: (value) => validateForm(),
prefixIcon: prefixIcon:
Icon(Icons.chrome_reader_mode, color: Colors.red), Icon(Icons.chrome_reader_mode, color: Color(0xFF40ACC9)),
padding: EdgeInsets.only( padding: EdgeInsets.only(
top: 20, bottom: 20, left: 10, right: 10), top: 20, bottom: 20, left: 10, right: 10),
hintText: TranslationBase.of(context).nationalID, hintText: TranslationBase.of(context).nationalID,

@ -41,9 +41,9 @@ class _WelcomeLogin extends State<WelcomeLogin> {
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[ children: <Widget>[
Image.asset( Image.asset(
'assets/images/habib-logo.png', 'assets/images/DQ/dq_logo_icon.png',
height: 80, height: 90,
width: 80, width: 90
), ),
Text( Text(
TranslationBase.of(context).welcome, TranslationBase.of(context).welcome,
@ -81,7 +81,7 @@ class _WelcomeLogin extends State<WelcomeLogin> {
LOGIN_TYPE, LOGIN_TYPE,
), ),
}, },
color: Colors.red[900], color: Color(0xFF40ACC9),
textColor: Colors.white, textColor: Colors.white,
)) ))
], ],

@ -82,7 +82,7 @@ class _MobileNo extends State<MobileNo> {
flex: 1, flex: 1,
child: Icon( child: Icon(
Icons.phone, Icons.phone,
color: Colors.red, color: Color(0xFF40ACC9),
)), )),
Expanded( Expanded(
flex: 1, flex: 1,

@ -127,7 +127,6 @@ dependencies:
# Carousel # Carousel
carousel_pro: ^1.0.0 carousel_pro: ^1.0.0
#local_notifications #local_notifications
flutter_local_notifications: ^1.5.0 flutter_local_notifications: ^1.5.0
@ -172,6 +171,8 @@ flutter:
- assets/images/medical/ - assets/images/medical/
- assets/images/new-design/ - assets/images/new-design/
- assets/images/login/ - assets/images/login/
- assets/images/SmartWatches/
- assets/images/DQ/
- assets/json/ - assets/json/
- assets/sounds/ - assets/sounds/
- assets/images/svg/ - assets/images/svg/

Loading…
Cancel
Save