new constants

This commit is contained in:
Ankit Mahato
2023-03-11 17:36:38 +05:30
parent 5ea8f01217
commit eba7bbac44
2 changed files with 7 additions and 2 deletions

View File

@ -5,6 +5,7 @@ final codeStyle = GoogleFonts.sourceCodePro();
const textStyleButton = TextStyle(fontWeight: FontWeight.bold);
final colorTransparent = MaterialStateProperty.all<Color>(Colors.transparent);
const colorBg = Colors.white;
final colorGrey50 = Colors.grey.shade50;
final colorGrey100 = Colors.grey.shade100;
@ -28,6 +29,10 @@ const p8 = EdgeInsets.all(8);
const ps8 = EdgeInsets.only(left: 8);
const p10 = EdgeInsets.all(10);
const tabAnimationDuration = Duration(milliseconds: 200);
const randRange = 100000;
enum HTTPVerb { get, head, post, put, patch, delete }
enum ContentType { json, text }