14 lines
510 B
Dart
14 lines
510 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class ChoreoConstants {
|
|
static const numberOfITChoices = 4;
|
|
// static const millisecondsToDisplayFeedback = 2500;
|
|
static const millisecondsToDisplayFeedback = 0;
|
|
static const commonalityThreshold = 0.9;
|
|
static const levelThresholdForGreen = 1;
|
|
static const levelThresholdForYellow = 2;
|
|
static const levelThresholdForRed = 3;
|
|
static const green = Colors.green;
|
|
static const yellow = Color.fromARGB(255, 206, 152, 2);
|
|
static const red = Colors.red;
|
|
}
|