movie and tvshow list

This commit is contained in:
2024-04-11 22:15:38 +02:00
parent e510934934
commit 493accc6d5
14 changed files with 962 additions and 64 deletions
+25
View File
@@ -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;
}