113 lines
3.2 KiB
Dart
113 lines
3.2 KiB
Dart
import 'package:flutter/material.dart';
|
|
|
|
import 'mode.dart';
|
|
|
|
class Config {
|
|
late Widget selectIcon;
|
|
late Color backgroundColor,
|
|
appbarColor,
|
|
appbarIconColor,
|
|
underlineColor,
|
|
bottomSheetColor;
|
|
late TextStyle textStyle,
|
|
appbarTextStyle,
|
|
selectedMenuStyle,
|
|
unselectedMenuStyle;
|
|
String recents, gallery, lastMonth, lastWeek, tapPhotoSelect, selected;
|
|
List<String> months;
|
|
Mode mode;
|
|
|
|
Config(
|
|
{Color? backgroundColor,
|
|
Color? appbarColor,
|
|
Color? bottomSheetColor,
|
|
Color? appbarIconColor,
|
|
Color? underlineColor,
|
|
TextStyle? selectedMenuStyle,
|
|
TextStyle? unselectedMenuStyle,
|
|
TextStyle? textStyle,
|
|
TextStyle? appbarTextStyle,
|
|
this.recents = "RECENTS",
|
|
this.gallery = "GALLERY",
|
|
this.lastMonth = "Last Month",
|
|
this.lastWeek = "Last Week",
|
|
this.tapPhotoSelect = "Tap photo to select",
|
|
this.selected = "Selected",
|
|
this.months = const [
|
|
"January",
|
|
"February",
|
|
"March",
|
|
"April",
|
|
"May",
|
|
"June",
|
|
"July",
|
|
"August",
|
|
"September",
|
|
"October",
|
|
"November",
|
|
"December"
|
|
],
|
|
this.mode = Mode.light,
|
|
Widget? selectIcon}) {
|
|
if (backgroundColor == null) {
|
|
this.backgroundColor = mode == Mode.dark
|
|
? const Color.fromARGB(255, 18, 27, 34)
|
|
: Colors.white;
|
|
}
|
|
if (appbarColor == null) {
|
|
this.appbarColor = mode == Mode.dark
|
|
? const Color.fromARGB(255, 31, 44, 52)
|
|
: Colors.white;
|
|
}
|
|
if (bottomSheetColor == null) {
|
|
this.bottomSheetColor = mode == Mode.dark
|
|
? const Color.fromARGB(255, 31, 44, 52)
|
|
: const Color.fromARGB(255, 247, 248, 250);
|
|
}
|
|
if (appbarIconColor == null) {
|
|
this.appbarIconColor = mode == Mode.dark
|
|
? Colors.white
|
|
: const Color.fromARGB(255, 130, 141, 148);
|
|
}
|
|
if (underlineColor == null) {
|
|
this.underlineColor = mode == Mode.dark
|
|
? const Color.fromARGB(255, 6, 164, 130)
|
|
: const Color.fromARGB(255, 20, 161, 131);
|
|
}
|
|
if (selectedMenuStyle == null) {
|
|
this.selectedMenuStyle =
|
|
TextStyle(color: mode == Mode.dark ? Colors.white : Colors.black);
|
|
}
|
|
if (unselectedMenuStyle == null) {
|
|
this.unselectedMenuStyle = TextStyle(
|
|
color: mode == Mode.dark
|
|
? Colors.grey
|
|
: const Color.fromARGB(255, 102, 112, 117));
|
|
}
|
|
if (textStyle == null) {
|
|
this.textStyle = TextStyle(
|
|
color: mode == Mode.dark
|
|
? Colors.grey[300]!
|
|
: const Color.fromARGB(255, 108, 115, 121),
|
|
fontWeight: FontWeight.bold);
|
|
}
|
|
if (appbarTextStyle == null) {
|
|
this.appbarTextStyle =
|
|
TextStyle(color: mode == Mode.dark ? Colors.white : Colors.black);
|
|
}
|
|
this.selectIcon = selectIcon ??
|
|
Container(
|
|
width: 50,
|
|
height: 50,
|
|
decoration: const BoxDecoration(
|
|
shape: BoxShape.circle,
|
|
color: Color.fromARGB(255, 0, 168, 132),
|
|
),
|
|
child: const Icon(
|
|
Icons.check,
|
|
color: Colors.white,
|
|
),
|
|
);
|
|
}
|
|
}
|