You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fluffychat/lib/pangea/constants/choreo_constants.dart

15 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;
}