2022-12-25 12:30:20 +03:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
import 'mode.dart';
|
|
|
|
|
|
|
|
class Config {
|
|
|
|
late Widget selectIcon;
|
2023-01-20 09:58:21 +03:00
|
|
|
Widget? permissionDeniedPage;
|
2022-12-25 12:30:20 +03:00
|
|
|
late Color backgroundColor,
|
|
|
|
appbarColor,
|
|
|
|
appbarIconColor,
|
|
|
|
underlineColor,
|
|
|
|
bottomSheetColor;
|
|
|
|
late TextStyle textStyle,
|
|
|
|
appbarTextStyle,
|
|
|
|
selectedMenuStyle,
|
|
|
|
unselectedMenuStyle;
|
2022-12-31 16:43:05 +03:00
|
|
|
String recents,
|
|
|
|
recent,
|
|
|
|
gallery,
|
|
|
|
lastMonth,
|
|
|
|
lastWeek,
|
|
|
|
tapPhotoSelect,
|
|
|
|
selected;
|
2022-12-29 08:45:28 +03:00
|
|
|
Mode mode;
|
2022-12-25 12:30:20 +03:00
|
|
|
|
|
|
|
Config(
|
|
|
|
{Color? backgroundColor,
|
|
|
|
Color? appbarColor,
|
|
|
|
Color? bottomSheetColor,
|
|
|
|
Color? appbarIconColor,
|
|
|
|
Color? underlineColor,
|
|
|
|
TextStyle? selectedMenuStyle,
|
|
|
|
TextStyle? unselectedMenuStyle,
|
|
|
|
TextStyle? textStyle,
|
|
|
|
TextStyle? appbarTextStyle,
|
2023-01-20 09:58:21 +03:00
|
|
|
this.permissionDeniedPage,
|
2022-12-25 12:30:20 +03:00
|
|
|
this.recents = "RECENTS",
|
2022-12-31 16:43:05 +03:00
|
|
|
this.recent = "Recent",
|
2022-12-25 12:30:20 +03:00
|
|
|
this.gallery = "GALLERY",
|
|
|
|
this.lastMonth = "Last Month",
|
|
|
|
this.lastWeek = "Last Week",
|
|
|
|
this.tapPhotoSelect = "Tap photo to select",
|
|
|
|
this.selected = "Selected",
|
2022-12-29 08:45:28 +03:00
|
|
|
this.mode = Mode.light,
|
2022-12-25 12:30:20 +03:00
|
|
|
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,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|