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.
36 lines
940 B
Dart
36 lines
940 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class StateColor {
|
|
static const Color none = Colors.black;
|
|
static const Color init = Color.fromARGB(255, 192, 192, 192);
|
|
static const Color prog = Color.fromARGB(255, 0, 0, 192);
|
|
static const Color done = Color.fromARGB(255, 0, 192, 0);
|
|
}
|
|
|
|
class TVShowColumn {
|
|
static int seriesID = 0;
|
|
static int seriesState = 1;
|
|
static int state = 2;
|
|
static int cliffhanger = 3;
|
|
static int backdropPath = 4;
|
|
static int overview = 5;
|
|
static int title = 6;
|
|
static int firstAired = 7;
|
|
}
|
|
|
|
class MovieColumn {
|
|
static int movieID = 0;
|
|
static int movieState = 1;
|
|
static int backdropPath = 2;
|
|
static int title = 3;
|
|
static int firstAired = 4;
|
|
static int resolution = 5;
|
|
static int overview = 6;
|
|
}
|
|
|
|
class BoxColor {
|
|
static Color backgroundColor = const Color.fromARGB(191, 255, 255, 255);
|
|
static Color titleColor = Colors.white;
|
|
static Color titleBackgroundColor = Colors.blue;
|
|
}
|