13 lines
382 B
Dart
13 lines
382 B
Dart
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);
|
|
}
|