#Filter issues waiting for Go-live: project = SAV AND (component in (Android) AND component != FIAT OR component is EMPTY) AND status = "Waiting for Go-Live" ORDER BY issuekey
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# List current ssl files seen to this scope | |
ssh-add -l | |
# Adds required rsa file to current terminal | |
ssh-add /Users/ahmedelshaabany/.ssh/id_rsa |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo chmod 042777 * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Get screen width & height | |
MediaQueryData queryData = MediaQuery.of(context); | |
int width = queryData.size.width; | |
int height = queryData.size.height; | |
//Device pixel ratio | |
int ratio = queryData.devicePixelRatio; | |
//Get text scale factor | |
int textScale = queryData.textScaleFactor; | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//set click_action for notification and user clicks on the notification, | |
// data send to onLaunch method configure | |
final FirebaseMessaging _firebaseMessaging = FirebaseMessaging(); | |
@override | |
void initState() { | |
prepareFirebaseCloudMessaging(); | |
super.initState(); | |
} |