1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-06-19 00:05:16 +00:00

Can specify custom primary color

This commit is contained in:
2021-04-24 08:57:20 +02:00
parent 18d3ae6955
commit 0edea3edd4
3 changed files with 11 additions and 1 deletions

View File

@ -16,6 +16,8 @@ class Config {
final bool apiServerSecure;
final String clientName;
final Color splashBackgroundColor;
final Color primaryColor;
final Color primaryColorDark;
final String appName;
final String appQuickDescription;
@ -28,6 +30,8 @@ class Config {
@required this.apiServerSecure,
@required this.clientName,
this.splashBackgroundColor = defaultColor,
this.primaryColor,
this.primaryColorDark,
this.appName = "Comunic",
this.appQuickDescription,
this.toursEntriesBuilder,