finishCommit
This commit is contained in:
+25
-15
@@ -3,11 +3,15 @@ import 'package:get/get.dart';
|
||||
|
||||
var kFontSizeDouble = 15.0;
|
||||
|
||||
var kTextSyleLittleGrey =
|
||||
TextStyle(fontSize: 12.0, color: Colors.grey.shade800);
|
||||
var kTextSyleLittleGrey = TextStyle(
|
||||
fontSize: 12.0,
|
||||
color: Colors.grey.shade800,
|
||||
);
|
||||
|
||||
var kTextSyleHeaderGrey =
|
||||
TextStyle(fontSize: 25.0, color: Colors.grey.shade800);
|
||||
var kTextSyleHeaderGrey = TextStyle(
|
||||
fontSize: 25.0,
|
||||
color: Colors.grey.shade800,
|
||||
);
|
||||
|
||||
var kElevatetButtonStyleDrawer = ElevatedButton.styleFrom(
|
||||
backgroundColor: Colors.blueGrey,
|
||||
@@ -28,24 +32,30 @@ var kInputDecorationDropDownMenue = InputDecoration(
|
||||
);
|
||||
|
||||
SnackbarController kDisplaySnackBarRed(String szInfoText) {
|
||||
return Get.snackbar('Info', szInfoText,
|
||||
backgroundColor: Colors.red[600],
|
||||
snackPosition: SnackPosition.TOP,
|
||||
colorText: Colors.white,
|
||||
snackStyle: SnackStyle.GROUNDED);
|
||||
return Get.snackbar(
|
||||
'Info',
|
||||
szInfoText,
|
||||
backgroundColor: Colors.red[600],
|
||||
snackPosition: SnackPosition.TOP,
|
||||
colorText: Colors.white,
|
||||
snackStyle: SnackStyle.GROUNDED,
|
||||
);
|
||||
}
|
||||
|
||||
SnackbarController kDisplaySnackBarGreen(String szInfoText) {
|
||||
return Get.snackbar('Info', szInfoText,
|
||||
backgroundColor: Colors.green[600],
|
||||
snackPosition: SnackPosition.TOP,
|
||||
colorText: Colors.black,
|
||||
snackStyle: SnackStyle.GROUNDED);
|
||||
return Get.snackbar(
|
||||
'Info',
|
||||
szInfoText,
|
||||
backgroundColor: Colors.green[600],
|
||||
snackPosition: SnackPosition.TOP,
|
||||
colorText: Colors.black,
|
||||
snackStyle: SnackStyle.GROUNDED,
|
||||
);
|
||||
}
|
||||
|
||||
//Setting Wait for Delete
|
||||
List<Map<String, dynamic>> kListMapSetting = [
|
||||
{'ContainerID': '', 'Info': ''}
|
||||
{'ContainerID': '', 'Info': ''},
|
||||
];
|
||||
|
||||
//Switching PROD/DEV
|
||||
|
||||
Reference in New Issue
Block a user