Skip to content

Commit

Permalink
accept/decline button
Browse files Browse the repository at this point in the history
  • Loading branch information
frankmer committed Aug 20, 2024
1 parent 20b0463 commit 15f8a0a
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions lib/utils/customization/theme_customization.dart
Original file line number Diff line number Diff line change
Expand Up @@ -229,10 +229,10 @@ class ThemeCustomization {
deleteColor: json['deleteColor'] != null ? Color(json['deleteColor'] as int) : null,
renameColor: json['renameColor'] != null ? Color(json['renameColor'] as int) : null,
lockColor: json['lockColor'] != null ? Color(json['lockColor'] as int) : null,
pushAuthRequestAcceptColor: json['pushAuthRequestAcceptColor'] != null ? Color(json['pushAuthRequestAcceptColor'] as int) : null,
pushAuthRequestDeclineColor: json['pushAuthRequestDeclineColor'] != null ? Color(json['pushAuthRequestDeclineColor'] as int) : null,
tileIconColor: json['tileIconColor'] != null ? Color(json['tileIconColor'] as int) : null,
navigationBarColor: json['navigationBarColor'] != null ? Color(json['navigationBarColor'] as int) : null,
pushAuthRequestAcceptColor: json['_pushAuthRequestAcceptColor'] != null ? Color(json['_pushAuthRequestAcceptColor'] as int) : null,
pushAuthRequestDeclineColor: json['_pushAuthRequestDeclineColor'] != null ? Color(json['_pushAuthRequestDeclineColor'] as int) : null,
actionButtonsForegroundColor: json['_actionButtonsForegroundColor'] != null ? Color(json['_actionButtonsForegroundColor'] as int) : null,
tilePrimaryColor: json['_tilePrimaryColor'] != null ? Color(json['_tilePrimaryColor'] as int) : null,
tileSubtitleColor: json['_tileSubtitleColor'] != null ? Color(json['_tileSubtitleColor'] as int) : null,
Expand All @@ -252,10 +252,10 @@ class ThemeCustomization {
deleteColor: json['deleteColor'] != null ? Color(json['deleteColor'] as int) : null,
renameColor: json['renameColor'] != null ? Color(json['renameColor'] as int) : null,
lockColor: json['lockColor'] != null ? Color(json['lockColor'] as int) : null,
pushAuthRequestAcceptColor: json['pushAuthRequestAcceptColor'] != null ? Color(json['pushAuthRequestAcceptColor'] as int) : null,
pushAuthRequestDeclineColor: json['pushAuthRequestDeclineColor'] != null ? Color(json['pushAuthRequestDeclineColor'] as int) : null,
tileIconColor: json['tileIconColor'] != null ? Color(json['tileIconColor'] as int) : null,
navigationBarColor: json['navigationBarColor'] != null ? Color(json['navigationBarColor'] as int) : null,
pushAuthRequestAcceptColor: json['_pushAuthRequestAcceptColor'] != null ? Color(json['_pushAuthRequestAcceptColor'] as int) : null,
pushAuthRequestDeclineColor: json['_pushAuthRequestDeclineColor'] != null ? Color(json['_pushAuthRequestDeclineColor'] as int) : null,
actionButtonsForegroundColor: json['_actionButtonsForegroundColor'] != null ? Color(json['_actionButtonsForegroundColor'] as int) : null,
tilePrimaryColor: json['_tilePrimaryColor'] != null ? Color(json['_tilePrimaryColor'] as int) : null,
tileSubtitleColor: json['_tileSubtitleColor'] != null ? Color(json['_tileSubtitleColor'] as int) : null,
Expand All @@ -280,6 +280,7 @@ class ThemeCustomization {
'lockColor': lockColor.value,
'tileIconColor': tileIconColor.value,
'navigationBarColor': navigationBarColor.value,
'_pushAuthRequestAcceptColor': _pushAuthRequestAcceptColor?.value,
'_actionButtonsForegroundColor': _actionButtonsForegroundColor?.value,
'_tilePrimaryColor': _tilePrimaryColor?.value,
'_tileSubtitleColor': _tileSubtitleColor?.value,
Expand Down

0 comments on commit 15f8a0a

Please sign in to comment.