24 lines
754 B
Dart
24 lines
754 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
// Define action texts
|
|
class ButtonActions {
|
|
static const String checkIn = "Check In";
|
|
static const String checkOut = "Check Out";
|
|
static const String requestRegularize = " Request Regularize";
|
|
static const String rejected = "Rejected";
|
|
static const String approved = "Approved";
|
|
static const String requested = "Requested";
|
|
}
|
|
|
|
// Map action texts to colors
|
|
class AttendanceActionColors {
|
|
static const Map<String, Color> colors = {
|
|
ButtonActions.checkIn: Colors.green,
|
|
ButtonActions.checkOut: Colors.red,
|
|
ButtonActions.requestRegularize: Colors.blue,
|
|
ButtonActions.rejected: Colors.orange,
|
|
ButtonActions.approved: Colors.green,
|
|
ButtonActions.requested: Colors.yellow,
|
|
};
|
|
}
|