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

Sultan

See merge request Cloud_Solution/diplomatic-quarter!195
dq_and_master
Mohammad Aljammal 4 years ago
commit d8134240de

@ -151,17 +151,17 @@ class _LandingPageState extends State<LandingPage> with WidgetsBindingObserver {
_firebaseMessaging.getToken().then((String token) async {
sharedPref.setString(PUSH_TOKEN, token);
Future.delayed(Duration.zero, () async {
if (token != null && await sharedPref.getObject(USER_PROFILE) == null) {
DEVICE_TOKEN = token;
checkUserStatus(token);
} else {
} else if (await sharedPref.getObject(USER_PROFILE) != null) {
getNotificationCount(token);
}
requestPermissions();
}).catchError((err) {
print(err);
});
});
//
// //_firebase Background message handler
Future.delayed(Duration.zero, () => setTheme());
@ -516,12 +516,12 @@ class _LandingPageState extends State<LandingPage> with WidgetsBindingObserver {
// themeNotifier.setTheme(defaultTheme);
}
void checkUserStatus(token) async {
GifLoaderDialogUtils.showMyDialog(context);
//GifLoaderDialogUtils.showMyDialog(context);
authService
.selectDeviceImei(token)
.then((SelectDeviceIMEIRES value) => setUserValues(value))
.catchError((err) {
GifLoaderDialogUtils.hideDialog(context);
//GifLoaderDialogUtils.hideDialog(context);
});
}
@ -543,6 +543,7 @@ class _LandingPageState extends State<LandingPage> with WidgetsBindingObserver {
void setUserValues(value) async {
GifLoaderDialogUtils.hideDialog(context);
requestPermissions();
sharedPref.setObject(IMEI_USER_DATA, value);
}

@ -160,8 +160,7 @@ class AuthProvider with ChangeNotifier {
}, body: request);
return Future.value(localRes);
} catch (error) {
print(error);
//throw error;
return Future.value(null);
}
}

@ -70,7 +70,7 @@ class _AppDrawerState extends State<AppDrawer> {
padding: EdgeInsets.zero,
children: <Widget>[
Container(
height: SizeConfig.screenHeight * .28,
height: SizeConfig.screenHeight * .30,
padding: EdgeInsets.all(15),
child: InkWell(
child: Column(

Loading…
Cancel
Save