movie and tvshow list
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
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 BoxColor {
|
||||
static Color backgroundColor = const Color.fromARGB(191, 255, 255, 255);
|
||||
static Color titleColor = Colors.white;
|
||||
static Color titleBackgroundColor = Colors.blue;
|
||||
}
|
||||
Reference in New Issue
Block a user