|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
import 'package:flutter/material.dart';
class Theme {
static Color color1 = Colors.grey;
static Color color2 = Colors.grey;
static Color color3 = Colors.grey;
static Color color4 = Colors.grey;
static Color color5 = Colors.grey;
static Color color6 = Colors.grey;
static Color color7 = Colors.grey;
static Color color8 = Colors.grey;
static List list = new List();
static var visible1 = true;
static var visible2 = true;
static var visible3 = true;
static var visible4 = true;
static var visible5 = true;
static var visible6 = true;
static var visible7 = true;
static var visible8 = true;
}
|