Start implementing BugVault

This commit is contained in:
zontreck 2025-03-14 23:28:27 -07:00
parent 847fd65fae
commit db7130aca5
7 changed files with 261 additions and 121 deletions

13
lib/FlutterConstants.dart Normal file
View file

@ -0,0 +1,13 @@
import 'package:flutter/widgets.dart';
class FlutterConstants {
static const PROGRESS_BAR_COLOR = Color.fromARGB(255, 0, 165, 102);
static const PROGRESS_BAR_WAIT = Color.fromARGB(255, 97, 0, 0);
static const INPUT_TEXTFIELD_NOT_SELECTED = Color.fromARGB(
255,
228,
228,
228,
);
static const INPUT_TEXTFIELD_SELECTED = Color.fromARGB(255, 0, 170, 170);
}