More UI changes

This commit is contained in:
Juan Gilsanz Polo 2022-11-05 02:35:35 +01:00
parent d8897f1d74
commit 22346362a6
56 changed files with 217 additions and 139 deletions

View file

@ -33,8 +33,8 @@ ThemeData lightTheme(ColorScheme? dynamicColorScheme) => ThemeData(
) )
), ),
floatingActionButtonTheme: FloatingActionButtonThemeData( floatingActionButtonTheme: FloatingActionButtonThemeData(
foregroundColor: Colors.white, foregroundColor: dynamicColorScheme != null ? dynamicColorScheme.onPrimaryContainer : Colors.white,
backgroundColor: dynamicColorScheme != null ? dynamicColorScheme.primary : adguardGreenColor backgroundColor: dynamicColorScheme != null ? dynamicColorScheme.primaryContainer : adguardGreenColor
), ),
textButtonTheme: TextButtonThemeData( textButtonTheme: TextButtonThemeData(
style: ButtonStyle( style: ButtonStyle(
@ -47,9 +47,10 @@ ThemeData lightTheme(ColorScheme? dynamicColorScheme) => ThemeData(
), ),
), ),
dividerColor: Colors.black12, dividerColor: Colors.black12,
listTileTheme: const ListTileThemeData( listTileTheme: ListTileThemeData(
tileColor: Colors.transparent, tileColor: Colors.transparent,
iconColor: Color.fromRGBO(138, 138, 138, 1), textColor: dynamicColorScheme != null ? dynamicColorScheme.onSurfaceVariant : const Color.fromRGBO(117, 117, 117, 1),
iconColor: dynamicColorScheme != null ? dynamicColorScheme.onSurfaceVariant : const Color.fromRGBO(117, 117, 117, 1),
), ),
checkboxTheme: CheckboxThemeData( checkboxTheme: CheckboxThemeData(
checkColor: MaterialStateProperty.all(Colors.white), checkColor: MaterialStateProperty.all(Colors.white),
@ -102,8 +103,8 @@ ThemeData darkTheme(ColorScheme? dynamicColorScheme) => ThemeData(
elevation: 4, elevation: 4,
), ),
floatingActionButtonTheme: FloatingActionButtonThemeData( floatingActionButtonTheme: FloatingActionButtonThemeData(
foregroundColor: Colors.white, foregroundColor: dynamicColorScheme != null ? dynamicColorScheme.onPrimaryContainer : Colors.white,
backgroundColor: dynamicColorScheme != null ? dynamicColorScheme.primary : adguardGreenColor backgroundColor: dynamicColorScheme != null ? dynamicColorScheme.primaryContainer : adguardGreenColor
), ),
textButtonTheme: TextButtonThemeData( textButtonTheme: TextButtonThemeData(
style: ButtonStyle( style: ButtonStyle(
@ -125,14 +126,17 @@ ThemeData darkTheme(ColorScheme? dynamicColorScheme) => ThemeData(
), ),
), ),
dividerColor: Colors.white12, dividerColor: Colors.white12,
listTileTheme: const ListTileThemeData( listTileTheme: ListTileThemeData(
tileColor: Colors.transparent, tileColor: Colors.transparent,
iconColor: Color.fromRGBO(187, 187, 187, 1), textColor: dynamicColorScheme != null ? dynamicColorScheme.onSurfaceVariant : const Color.fromRGBO(187, 187, 187, 1),
iconColor: dynamicColorScheme != null ? dynamicColorScheme.onSurfaceVariant : const Color.fromRGBO(187, 187, 187, 1),
), ),
checkboxTheme: CheckboxThemeData( checkboxTheme: CheckboxThemeData(
checkColor: MaterialStateProperty.all(Colors.white), checkColor: MaterialStateProperty.all(
dynamicColorScheme != null ? dynamicColorScheme.onPrimary : Colors.white
),
fillColor: MaterialStateProperty.all( fillColor: MaterialStateProperty.all(
dynamicColorScheme != null ? dynamicColorScheme.primary : adguardGreenColor dynamicColorScheme != null ? dynamicColorScheme.onSurface : adguardGreenColor
), ),
), ),
tabBarTheme: TabBarTheme( tabBarTheme: TabBarTheme(
@ -197,6 +201,9 @@ ThemeData lightThemeOldVersions(MaterialColor primaryColor) => ThemeData(
overlayColor: MaterialStateProperty.all(primaryColor.shade50), overlayColor: MaterialStateProperty.all(primaryColor.shade50),
) )
), ),
cardTheme: CardTheme(
surfaceTintColor: primaryColor
),
navigationBarTheme: NavigationBarThemeData( navigationBarTheme: NavigationBarThemeData(
surfaceTintColor: primaryColor, surfaceTintColor: primaryColor,
indicatorColor: primaryColor indicatorColor: primaryColor
@ -220,11 +227,12 @@ ThemeData lightThemeOldVersions(MaterialColor primaryColor) => ThemeData(
dividerColor: Colors.black12, dividerColor: Colors.black12,
listTileTheme: const ListTileThemeData( listTileTheme: const ListTileThemeData(
tileColor: Colors.transparent, tileColor: Colors.transparent,
iconColor: Color.fromRGBO(138, 138, 138, 1), textColor: Color.fromRGBO(117, 117, 117, 1),
iconColor: Color.fromRGBO(117, 117, 117, 1),
), ),
checkboxTheme: CheckboxThemeData( checkboxTheme: CheckboxThemeData(
checkColor: MaterialStateProperty.all(Colors.white), checkColor: MaterialStateProperty.all(Colors.white),
fillColor: MaterialStateProperty.all(primaryColor), fillColor: MaterialStateProperty.all(primaryColor),
), ),
tabBarTheme: TabBarTheme( tabBarTheme: TabBarTheme(
unselectedLabelColor: Colors.black, unselectedLabelColor: Colors.black,
@ -260,7 +268,7 @@ ThemeData darkThemeOldVersions(MaterialColor primaryColor) => ThemeData(
) )
), ),
appBarTheme: AppBarTheme( appBarTheme: AppBarTheme(
color: Color.fromRGBO(18, 18, 18, 1), color: const Color.fromRGBO(18, 18, 18, 1),
foregroundColor: Colors.white, foregroundColor: Colors.white,
elevation: 0, elevation: 0,
surfaceTintColor: primaryColor surfaceTintColor: primaryColor
@ -293,6 +301,9 @@ ThemeData darkThemeOldVersions(MaterialColor primaryColor) => ThemeData(
overlayColor: MaterialStateProperty.all(primaryColor.shade50), overlayColor: MaterialStateProperty.all(primaryColor.shade50),
) )
), ),
cardTheme: CardTheme(
surfaceTintColor: primaryColor
),
inputDecorationTheme: InputDecorationTheme( inputDecorationTheme: InputDecorationTheme(
floatingLabelStyle: TextStyle( floatingLabelStyle: TextStyle(
color: primaryColor color: primaryColor
@ -305,6 +316,15 @@ ThemeData darkThemeOldVersions(MaterialColor primaryColor) => ThemeData(
) )
) )
), ),
checkboxTheme: CheckboxThemeData(
checkColor: MaterialStateProperty.all(Colors.white),
fillColor: MaterialStateProperty.all(primaryColor),
),
listTileTheme: const ListTileThemeData(
tileColor: Colors.transparent,
textColor: Color.fromRGBO(187, 187, 187, 1),
iconColor: Color.fromRGBO(187, 187, 187, 1),
),
textSelectionTheme: TextSelectionThemeData( textSelectionTheme: TextSelectionThemeData(
cursorColor: primaryColor cursorColor: primaryColor
), ),
@ -318,14 +338,6 @@ ThemeData darkThemeOldVersions(MaterialColor primaryColor) => ThemeData(
), ),
), ),
dividerColor: Colors.white12, dividerColor: Colors.white12,
listTileTheme: const ListTileThemeData(
tileColor: Colors.transparent,
iconColor: Color.fromRGBO(187, 187, 187, 1),
),
checkboxTheme: CheckboxThemeData(
checkColor: MaterialStateProperty.all(Colors.white),
fillColor: MaterialStateProperty.all(Colors.blue),
),
tabBarTheme: TabBarTheme( tabBarTheme: TabBarTheme(
unselectedLabelColor: Colors.white, unselectedLabelColor: Colors.white,
labelColor: primaryColor, labelColor: primaryColor,

View file

@ -43,16 +43,18 @@ class _AppLogDetailsModalState extends State<AppLogDetailsModal> {
return AlertDialog( return AlertDialog(
title: Column( title: Column(
children: [ children: [
const Icon( Icon(
Icons.description_rounded, Icons.description_rounded,
size: 26, size: 24,
color: Theme.of(context).listTileTheme.iconColor,
), ),
const SizedBox(height: 20), const SizedBox(height: 16),
Text( Text(
AppLocalizations.of(context)!.logDetails, AppLocalizations.of(context)!.logDetails,
textAlign: TextAlign.center, textAlign: TextAlign.center,
style: const TextStyle( style: TextStyle(
fontSize: 24 fontSize: 24,
color: Theme.of(context).colorScheme.onSurface
), ),
) )
], ],

View file

@ -50,8 +50,22 @@ class AppLogs extends StatelessWidget {
padding: const EdgeInsets.only(top: 0), padding: const EdgeInsets.only(top: 0),
itemCount: appConfigProvider.logs.length, itemCount: appConfigProvider.logs.length,
itemBuilder: (context, index) => ListTile( itemBuilder: (context, index) => ListTile(
title: Text(appConfigProvider.logs[index].message), title: Text(
subtitle: Text(appConfigProvider.logs[index].dateTime.toString()), appConfigProvider.logs[index].message,
style: TextStyle(
fontSize: 16,
fontWeight: FontWeight.normal,
color: Theme.of(context).colorScheme.onSurface
),
),
subtitle: Text(
appConfigProvider.logs[index].dateTime.toString(),
style: TextStyle(
fontSize: 14,
fontWeight: FontWeight.normal,
color: Theme.of(context).listTileTheme.textColor
),
),
trailing: Text(appConfigProvider.logs[index].type), trailing: Text(appConfigProvider.logs[index].type),
onTap: () => { onTap: () => {
showDialog( showDialog(

View file

@ -220,7 +220,7 @@ class _AddedListState extends State<AddedList> {
Text( Text(
widget.data[index].ids.toString().replaceAll(RegExp(r'^\[|\]$'), ''), widget.data[index].ids.toString().replaceAll(RegExp(r'^\[|\]$'), ''),
style: TextStyle( style: TextStyle(
color: Theme.of(context).colorScheme.onSurfaceVariant color: Theme.of(context).listTileTheme.textColor
), ),
), ),
const SizedBox(height: 7), const SizedBox(height: 7),

View file

@ -322,7 +322,7 @@ class _ClientScreenState extends State<ClientScreen> {
children: [ children: [
Icon( Icon(
Icons.label_rounded, Icons.label_rounded,
color: Theme.of(context).colorScheme.onSurfaceVariant color: Theme.of(context).listTileTheme.iconColor
), ),
const SizedBox(width: 16), const SizedBox(width: 16),
Column( Column(
@ -341,7 +341,7 @@ class _ClientScreenState extends State<ClientScreen> {
? "${selectedTags.length} ${AppLocalizations.of(context)!.tagsSelected}" ? "${selectedTags.length} ${AppLocalizations.of(context)!.tagsSelected}"
: AppLocalizations.of(context)!.noTagsSelected, : AppLocalizations.of(context)!.noTagsSelected,
style: TextStyle( style: TextStyle(
color: Theme.of(context).colorScheme.onSurfaceVariant color: Theme.of(context).listTileTheme.iconColor
), ),
) )
], ],
@ -540,7 +540,7 @@ class _ClientScreenState extends State<ClientScreen> {
Icon( Icon(
Icons.public, Icons.public,
color: useGlobalSettingsServices == false color: useGlobalSettingsServices == false
? Theme.of(context).colorScheme.onSurface ? Theme.of(context).listTileTheme.iconColor
: Theme.of(context).colorScheme.onSurface.withOpacity(0.38), : Theme.of(context).colorScheme.onSurface.withOpacity(0.38),
), ),
const SizedBox(width: 16), const SizedBox(width: 16),
@ -563,7 +563,7 @@ class _ClientScreenState extends State<ClientScreen> {
? "${blockedServices.length} ${AppLocalizations.of(context)!.servicesBlocked}" ? "${blockedServices.length} ${AppLocalizations.of(context)!.servicesBlocked}"
: AppLocalizations.of(context)!.noBlockedServicesSelected, : AppLocalizations.of(context)!.noBlockedServicesSelected,
style: TextStyle( style: TextStyle(
color: Theme.of(context).colorScheme.onSurfaceVariant color: Theme.of(context).listTileTheme.iconColor
), ),
) )
] ]

View file

@ -143,7 +143,7 @@ class _ClientsWidgetState extends State<ClientsWidget> with TickerProviderStateM
color: Theme.of(context).scaffoldBackgroundColor, color: Theme.of(context).scaffoldBackgroundColor,
border: Border( border: Border(
top: BorderSide( top: BorderSide(
color: Theme.of(context).colorScheme.surfaceVariant color: Theme.of(context).colorScheme.onSurface.withOpacity(0.1)
) )
) )
), ),

View file

@ -69,10 +69,10 @@ class ClientsFab extends StatelessWidget {
return FloatingActionButton( return FloatingActionButton(
onPressed: () => openAddClient(), onPressed: () => openAddClient(),
backgroundColor: Theme.of(context).colorScheme.primaryContainer, backgroundColor: Theme.of(context).floatingActionButtonTheme.backgroundColor,
child: Icon( child: Icon(
Icons.add, Icons.add,
color: Theme.of(context).colorScheme.onPrimaryContainer, color: Theme.of(context).floatingActionButtonTheme.foregroundColor,
), ),
); );
} }

View file

@ -20,9 +20,17 @@ class OptionsModal extends StatelessWidget {
), ),
title: Column( title: Column(
children: [ children: [
const Icon(Icons.more_horiz), Icon(
Icons.more_horiz,
color: Theme.of(context).listTileTheme.iconColor
),
const SizedBox(height: 16), const SizedBox(height: 16),
Text(AppLocalizations.of(context)!.options) Text(
AppLocalizations.of(context)!.options,
style: TextStyle(
color: Theme.of(context).colorScheme.onSurface
),
)
], ],
), ),
content: Column( content: Column(
@ -37,12 +45,13 @@ class OptionsModal extends StatelessWidget {
title: Text( title: Text(
AppLocalizations.of(context)!.edit, AppLocalizations.of(context)!.edit,
style: TextStyle( style: TextStyle(
color: Theme.of(context).colorScheme.onSurface color: Theme.of(context).colorScheme.onSurface,
fontWeight: FontWeight.normal
), ),
), ),
leading: Icon( leading: Icon(
Icons.edit, Icons.edit,
color: Theme.of(context).colorScheme.onSurfaceVariant, color: Theme.of(context).listTileTheme.iconColor,
), ),
), ),
ListTile( ListTile(
@ -53,12 +62,13 @@ class OptionsModal extends StatelessWidget {
title: Text( title: Text(
AppLocalizations.of(context)!.delete, AppLocalizations.of(context)!.delete,
style: TextStyle( style: TextStyle(
color: Theme.of(context).colorScheme.onSurface color: Theme.of(context).colorScheme.onSurface,
fontWeight: FontWeight.normal
), ),
), ),
leading: Icon( leading: Icon(
Icons.delete, Icons.delete,
color: Theme.of(context).colorScheme.onSurfaceVariant, color: Theme.of(context).listTileTheme.iconColor,
), ),
), ),
], ],

View file

@ -17,7 +17,7 @@ class RemoveClientModal extends StatelessWidget {
Icon( Icon(
Icons.delete_rounded, Icons.delete_rounded,
size: 24, size: 24,
color: Theme.of(context).colorScheme.secondary color: Theme.of(context).listTileTheme.iconColor
), ),
const SizedBox(height: 16), const SizedBox(height: 16),
Text( Text(

View file

@ -51,7 +51,7 @@ class _ServicesModalState extends State<ServicesModal> {
children: [ children: [
Icon( Icon(
Icons.public, Icons.public,
color: Theme.of(context).colorScheme.onSurface, color: Theme.of(context).listTileTheme.iconColor
), ),
const SizedBox(height: 16), const SizedBox(height: 16),
Text( Text(

View file

@ -51,7 +51,7 @@ class _TagsModalState extends State<TagsModal> {
children: [ children: [
Icon( Icon(
Icons.label_rounded, Icons.label_rounded,
color: Theme.of(context).colorScheme.onSurface color: Theme.of(context).listTileTheme.iconColor
), ),
const SizedBox(height: 16), const SizedBox(height: 16),
Text( Text(

View file

@ -17,9 +17,10 @@ class FabConnect extends StatelessWidget {
return FloatingActionButton( return FloatingActionButton(
onPressed: openAddServerModal, onPressed: openAddServerModal,
backgroundColor: Theme.of(context).floatingActionButtonTheme.backgroundColor,
child: Icon( child: Icon(
Icons.add_rounded, Icons.add_rounded,
color: Theme.of(context).primaryColor.computeLuminance() > 0.5 ? Colors.black : Colors.white, color: Theme.of(context).floatingActionButtonTheme.foregroundColor,
), ),
); );
} }

View file

@ -1,9 +1,11 @@
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/app_localizations.dart'; import 'package:flutter_gen/gen_l10n/app_localizations.dart';
import 'package:provider/provider.dart';
import 'package:material_segmented_control/material_segmented_control.dart'; import 'package:material_segmented_control/material_segmented_control.dart';
import 'package:flutter_web_browser/flutter_web_browser.dart'; import 'package:flutter_web_browser/flutter_web_browser.dart';
import 'package:adguard_home_manager/constants/urls.dart'; import 'package:adguard_home_manager/constants/urls.dart';
import 'package:adguard_home_manager/providers/app_config_provider.dart';
class AddCustomRule extends StatefulWidget { class AddCustomRule extends StatefulWidget {
final void Function(String) onConfirm; final void Function(String) onConfirm;
@ -88,11 +90,17 @@ class _AddCustomRuleState extends State<AddCustomRule> {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
final appConfigProvider = Provider.of<AppConfigProvider>(context);
Map<int, Widget> presets = { Map<int, Widget> presets = {
0: Text( 0: Text(
AppLocalizations.of(context)!.block, AppLocalizations.of(context)!.block,
style: TextStyle( style: TextStyle(
color: Theme.of(context).colorScheme.onSurface, color: appConfigProvider.useDynamicColor == true
? Theme.of(context).floatingActionButtonTheme.foregroundColor!
: preset == 0
? Colors.white
: Theme.of(context).primaryColor,
fontSize: 14, fontSize: 14,
fontWeight: FontWeight.w500 fontWeight: FontWeight.w500
), ),
@ -100,7 +108,11 @@ class _AddCustomRuleState extends State<AddCustomRule> {
1: Text( 1: Text(
AppLocalizations.of(context)!.unblock, AppLocalizations.of(context)!.unblock,
style: TextStyle( style: TextStyle(
color: Theme.of(context).colorScheme.onSurface, color: appConfigProvider.useDynamicColor == true
? Theme.of(context).floatingActionButtonTheme.foregroundColor!
: preset == 1
? Colors.white
: Theme.of(context).primaryColor,
fontSize: 14, fontSize: 14,
fontWeight: FontWeight.w500 fontWeight: FontWeight.w500
), ),
@ -108,7 +120,11 @@ class _AddCustomRuleState extends State<AddCustomRule> {
2: Text( 2: Text(
AppLocalizations.of(context)!.custom, AppLocalizations.of(context)!.custom,
style: TextStyle( style: TextStyle(
color: Theme.of(context).colorScheme.onSurface, color: appConfigProvider.useDynamicColor == true
? Theme.of(context).floatingActionButtonTheme.foregroundColor!
: preset == 2
? Colors.white
: Theme.of(context).primaryColor,
fontSize: 14, fontSize: 14,
fontWeight: FontWeight.w500 fontWeight: FontWeight.w500
), ),
@ -172,7 +188,7 @@ class _AddCustomRuleState extends State<AddCustomRule> {
children: presets, children: presets,
selectionIndex: preset, selectionIndex: preset,
onSegmentChosen: (value) => setState(() => preset = value), onSegmentChosen: (value) => setState(() => preset = value),
selectedColor: Theme.of(context).colorScheme.secondaryContainer, selectedColor: Theme.of(context).floatingActionButtonTheme.backgroundColor!,
unselectedColor: Colors.transparent, unselectedColor: Colors.transparent,
borderColor: Theme.of(context).colorScheme.onSurface, borderColor: Theme.of(context).colorScheme.onSurface,
), ),

View file

@ -92,7 +92,7 @@ class _AddListModalState extends State<AddListModal> {
? Icons.verified_user_rounded ? Icons.verified_user_rounded
: Icons.gpp_bad_rounded, : Icons.gpp_bad_rounded,
size: 24, size: 24,
color: Theme.of(context).colorScheme.secondary, color: Theme.of(context).listTileTheme.iconColor
), ),
), ),
const SizedBox(height: 16), const SizedBox(height: 16),

View file

@ -76,7 +76,7 @@ class _BlockedServicesModalState extends State<BlockedServicesModal> {
child: Icon( child: Icon(
Icons.block, Icons.block,
size: 24, size: 24,
color: Theme.of(context).colorScheme.secondary, color: Theme.of(context).listTileTheme.iconColor
), ),
), ),
const SizedBox(height: 16), const SizedBox(height: 16),

View file

@ -143,7 +143,7 @@ class _CheckHostModalState extends State<CheckHostModal> {
child: Icon( child: Icon(
Icons.shield_rounded, Icons.shield_rounded,
size: 24, size: 24,
color: Theme.of(context).colorScheme.secondary, color: Theme.of(context).listTileTheme.iconColor
), ),
), ),
const SizedBox(height: 16), const SizedBox(height: 16),

View file

@ -17,7 +17,7 @@ class DeleteListModal extends StatelessWidget {
Icon( Icon(
Icons.delete_rounded, Icons.delete_rounded,
size: 24, size: 24,
color: Theme.of(context).colorScheme.secondary, color: Theme.of(context).listTileTheme.iconColor
), ),
const SizedBox(height: 16), const SizedBox(height: 16),
Text( Text(

View file

@ -168,10 +168,10 @@ class FiltersFab extends StatelessWidget {
onPressed: type == 'blacklist' || type == 'whitelist' onPressed: type == 'blacklist' || type == 'whitelist'
? () => openAddWhitelistBlacklist() ? () => openAddWhitelistBlacklist()
: () => openAddCustomRule(), : () => openAddCustomRule(),
backgroundColor: Theme.of(context).colorScheme.primaryContainer, backgroundColor: Theme.of(context).floatingActionButtonTheme.backgroundColor,
child: Icon( child: Icon(
Icons.add, Icons.add,
color: Theme.of(context).colorScheme.onPrimaryContainer, color: Theme.of(context).floatingActionButtonTheme.foregroundColor,
), ),
); );
} }

View file

@ -26,7 +26,7 @@ class FilterListTile extends StatelessWidget {
Icon( Icon(
icon, icon,
size: 24, size: 24,
color: Theme.of(context).colorScheme.onSurfaceVariant, color: Theme.of(context).listTileTheme.iconColor,
), ),
const SizedBox(width: 16), const SizedBox(width: 16),
Flexible( Flexible(
@ -46,7 +46,7 @@ class FilterListTile extends StatelessWidget {
subtitle, subtitle,
style: TextStyle( style: TextStyle(
fontSize: 14, fontSize: 14,
color: color ?? Theme.of(context).colorScheme.onSurfaceVariant, color: color ?? Theme.of(context).listTileTheme.textColor,
fontWeight: bold == true ? FontWeight.bold : FontWeight.w400 fontWeight: bold == true ? FontWeight.bold : FontWeight.w400
), ),
), ),

View file

@ -393,7 +393,7 @@ class _FiltersWidgetState extends State<FiltersWidget> with TickerProviderStateM
color: Theme.of(context).scaffoldBackgroundColor, color: Theme.of(context).scaffoldBackgroundColor,
border: Border( border: Border(
top: BorderSide( top: BorderSide(
color: Theme.of(context).colorScheme.surfaceVariant color: Theme.of(context).colorScheme.onSurface.withOpacity(0.1)
) )
) )
), ),

View file

@ -306,12 +306,12 @@ class _ListDetailsScreenState extends State<ListDetailsScreen> {
right: 20, right: 20,
child: FloatingActionButton( child: FloatingActionButton(
onPressed: () => enableDisableList(widget.list, !enabled), onPressed: () => enableDisableList(widget.list, !enabled),
backgroundColor: Theme.of(context).colorScheme.primaryContainer, backgroundColor: Theme.of(context).floatingActionButtonTheme.backgroundColor,
child: Icon( child: Icon(
enabled == true enabled == true
? Icons.gpp_bad_rounded ? Icons.gpp_bad_rounded
: Icons.verified_user_rounded, : Icons.verified_user_rounded,
color: Theme.of(context).colorScheme.onPrimaryContainer, color: Theme.of(context).floatingActionButtonTheme.foregroundColor,
), ),
), ),
) )

View file

@ -17,7 +17,7 @@ class RemoveCustomRule extends StatelessWidget {
Icon( Icon(
Icons.shield_rounded, Icons.shield_rounded,
size: 24, size: 24,
color: Theme.of(context).colorScheme.secondary color: Theme.of(context).listTileTheme.iconColor
), ),
const SizedBox(height: 16), const SizedBox(height: 16),
Text( Text(

View file

@ -64,7 +64,7 @@ class _UpdateIntervalListsModalState extends State<UpdateIntervalListsModal> {
child: Icon( child: Icon(
Icons.update_rounded, Icons.update_rounded,
size: 24, size: 24,
color: Theme.of(context).colorScheme.secondary, color: Theme.of(context).listTileTheme.iconColor
), ),
), ),
Container( Container(

View file

@ -86,7 +86,7 @@ class HomeAppBar extends StatelessWidget with PreferredSizeWidget {
"${server.connectionMethod}://${server.domain}${server.path ?? ""}${server.port != null ? ':${server.port}' : ""}", "${server.connectionMethod}://${server.domain}${server.path ?? ""}${server.port != null ? ':${server.port}' : ""}",
style: TextStyle( style: TextStyle(
fontSize: 14, fontSize: 14,
color: Theme.of(context).colorScheme.onSurfaceVariant color: Theme.of(context).listTileTheme.textColor
), ),
) )
], ],

View file

@ -24,10 +24,10 @@ class HomeFab extends StatelessWidget {
return serversProvider.serverStatus.loadStatus == 1 return serversProvider.serverStatus.loadStatus == 1
? FloatingActionButton( ? FloatingActionButton(
onPressed: openManagementBottomSheet, onPressed: openManagementBottomSheet,
backgroundColor: Theme.of(context).colorScheme.primaryContainer, backgroundColor: Theme.of(context).floatingActionButtonTheme.backgroundColor,
child: Icon( child: Icon(
Icons.shield_rounded, Icons.shield_rounded,
color: Theme.of(context).colorScheme.onPrimaryContainer, color: Theme.of(context).floatingActionButtonTheme.foregroundColor,
), ),
) )
: const SizedBox(); : const SizedBox();

View file

@ -94,7 +94,7 @@ class ManagementModal extends StatelessWidget {
Icon( Icon(
icon, icon,
size: 24, size: 24,
color: Theme.of(context).colorScheme.onSurfaceVariant, color: Theme.of(context).listTileTheme.iconColor,
), ),
const SizedBox(width: 16), const SizedBox(width: 16),
Text( Text(
@ -144,7 +144,7 @@ class ManagementModal extends StatelessWidget {
child: Icon( child: Icon(
Icons.shield_rounded, Icons.shield_rounded,
size: 24, size: 24,
color: Theme.of(context).colorScheme.secondary, color: Theme.of(context).listTileTheme.iconColor
), ),
), ),
Padding( Padding(

View file

@ -57,7 +57,7 @@ class _FilterStatusModalState extends State<FilterStatusModal> {
Icon( Icon(
icon, icon,
size: 24, size: 24,
color: Theme.of(context).colorScheme.onSurfaceVariant, color: Theme.of(context).listTileTheme.iconColor
), ),
const SizedBox(width: 16), const SizedBox(width: 16),
Text( Text(
@ -102,7 +102,7 @@ class _FilterStatusModalState extends State<FilterStatusModal> {
child: Icon( child: Icon(
Icons.shield_rounded, Icons.shield_rounded,
size: 24, size: 24,
color: Theme.of(context).colorScheme.secondary, color: Theme.of(context).listTileTheme.iconColor
), ),
), ),
Text( Text(

View file

@ -141,14 +141,14 @@ class LogDetailsScreen extends StatelessWidget {
vertical: 5 vertical: 5
), ),
decoration: BoxDecoration( decoration: BoxDecoration(
color: Theme.of(context).colorScheme.primaryContainer, color: Theme.of(context).floatingActionButtonTheme.backgroundColor,
borderRadius: BorderRadius.circular(30) borderRadius: BorderRadius.circular(30)
), ),
child: Text( child: Text(
"CACHE", "CACHE",
style: TextStyle( style: TextStyle(
fontSize: 12, fontSize: 12,
color: Theme.of(context).colorScheme.onPrimaryContainer, color: Theme.of(context).floatingActionButtonTheme.foregroundColor,
fontWeight: FontWeight.w500 fontWeight: FontWeight.w500
), ),
), ),
@ -278,14 +278,14 @@ class LogDetailsScreen extends StatelessWidget {
vertical: 5 vertical: 5
), ),
decoration: BoxDecoration( decoration: BoxDecoration(
color: Theme.of(context).colorScheme.primaryContainer, color: Theme.of(context).floatingActionButtonTheme.backgroundColor,
borderRadius: BorderRadius.circular(30) borderRadius: BorderRadius.circular(30)
), ),
child: Text( child: Text(
a.type, a.type,
style: TextStyle( style: TextStyle(
fontSize: 12, fontSize: 12,
color: Theme.of(context).colorScheme.onPrimaryContainer, color: Theme.of(context).floatingActionButtonTheme.foregroundColor,
fontWeight: FontWeight.w500 fontWeight: FontWeight.w500
), ),
), ),

View file

@ -29,7 +29,7 @@ class LogListTile extends StatelessWidget {
Icon( Icon(
icon, icon,
size: 24, size: 24,
color: Theme.of(context).colorScheme.onSurfaceVariant, color: Theme.of(context).listTileTheme.iconColor,
), ),
const SizedBox(width: 16), const SizedBox(width: 16),
Flexible( Flexible(
@ -48,7 +48,7 @@ class LogListTile extends StatelessWidget {
subtitle!, subtitle!,
style: TextStyle( style: TextStyle(
fontSize: 14, fontSize: 14,
color: Theme.of(context).colorScheme.onSurfaceVariant, color: Theme.of(context).listTileTheme.textColor,
), ),
) )
], ],

View file

@ -97,7 +97,7 @@ class LogTile extends StatelessWidget {
Icon( Icon(
Icons.smartphone_rounded, Icons.smartphone_rounded,
size: 16, size: 16,
color: Theme.of(context).colorScheme.onSurfaceVariant, color: Theme.of(context).listTileTheme.textColor,
), ),
const SizedBox(width: 5), const SizedBox(width: 5),
SizedBox( SizedBox(
@ -105,7 +105,7 @@ class LogTile extends StatelessWidget {
log.client, log.client,
overflow: TextOverflow.ellipsis, overflow: TextOverflow.ellipsis,
style: TextStyle( style: TextStyle(
color: Theme.of(context).colorScheme.onSurfaceVariant, color: Theme.of(context).listTileTheme.textColor,
fontSize: 14, fontSize: 14,
height: 1.4, height: 1.4,
fontWeight: FontWeight.w400, fontWeight: FontWeight.w400,
@ -118,7 +118,7 @@ class LogTile extends StatelessWidget {
Icon( Icon(
Icons.schedule_rounded, Icons.schedule_rounded,
size: 16, size: 16,
color: Theme.of(context).colorScheme.onSurfaceVariant, color: Theme.of(context).listTileTheme.textColor,
), ),
const SizedBox(width: 5), const SizedBox(width: 5),
SizedBox( SizedBox(
@ -126,7 +126,7 @@ class LogTile extends StatelessWidget {
formatTimestampUTCFromAPI(log.time, 'HH:mm:ss'), formatTimestampUTCFromAPI(log.time, 'HH:mm:ss'),
overflow: TextOverflow.ellipsis, overflow: TextOverflow.ellipsis,
style: TextStyle( style: TextStyle(
color: Theme.of(context).colorScheme.onSurfaceVariant, color: Theme.of(context).listTileTheme.textColor,
fontSize: 13 fontSize: 13
), ),
), ),
@ -141,7 +141,7 @@ class LogTile extends StatelessWidget {
Icon( Icon(
Icons.smartphone_rounded, Icons.smartphone_rounded,
size: 16, size: 16,
color: Theme.of(context).colorScheme.onSurfaceVariant, color: Theme.of(context).listTileTheme.textColor,
), ),
const SizedBox(width: 15), const SizedBox(width: 15),
SizedBox( SizedBox(
@ -149,7 +149,7 @@ class LogTile extends StatelessWidget {
log.client, log.client,
overflow: TextOverflow.ellipsis, overflow: TextOverflow.ellipsis,
style: TextStyle( style: TextStyle(
color: Theme.of(context).colorScheme.onSurfaceVariant, color: Theme.of(context).listTileTheme.textColor,
fontSize: 13 fontSize: 13
), ),
), ),
@ -171,7 +171,7 @@ class LogTile extends StatelessWidget {
log.clientInfo!.name, log.clientInfo!.name,
overflow: TextOverflow.ellipsis, overflow: TextOverflow.ellipsis,
style: TextStyle( style: TextStyle(
color: Theme.of(context).colorScheme.onSurfaceVariant, color: Theme.of(context).listTileTheme.textColor,
fontSize: 13 fontSize: 13
), ),
), ),
@ -185,7 +185,7 @@ class LogTile extends StatelessWidget {
Icon( Icon(
Icons.schedule_rounded, Icons.schedule_rounded,
size: 16, size: 16,
color: Theme.of(context).colorScheme.onSurfaceVariant, color: Theme.of(context).listTileTheme.textColor,
), ),
const SizedBox(width: 15), const SizedBox(width: 15),
SizedBox( SizedBox(
@ -193,7 +193,7 @@ class LogTile extends StatelessWidget {
formatTimestampUTCFromAPI(log.time, 'HH:mm:ss'), formatTimestampUTCFromAPI(log.time, 'HH:mm:ss'),
overflow: TextOverflow.ellipsis, overflow: TextOverflow.ellipsis,
style: TextStyle( style: TextStyle(
color: Theme.of(context).colorScheme.onSurfaceVariant, color: Theme.of(context).listTileTheme.textColor,
fontSize: 13 fontSize: 13
), ),
), ),
@ -207,7 +207,7 @@ class LogTile extends StatelessWidget {
Icon( Icon(
Icons.timer, Icons.timer,
size: 16, size: 16,
color: Theme.of(context).colorScheme.onSurfaceVariant, color: Theme.of(context).listTileTheme.textColor,
), ),
const SizedBox(width: 15), const SizedBox(width: 15),
SizedBox( SizedBox(
@ -215,7 +215,7 @@ class LogTile extends StatelessWidget {
"${double.parse(log.elapsedMs).toStringAsFixed(2)} ms", "${double.parse(log.elapsedMs).toStringAsFixed(2)} ms",
overflow: TextOverflow.ellipsis, overflow: TextOverflow.ellipsis,
style: TextStyle( style: TextStyle(
color: Theme.of(context).colorScheme.onSurfaceVariant, color: Theme.of(context).listTileTheme.textColor,
fontSize: 13 fontSize: 13
), ),
), ),

View file

@ -131,7 +131,7 @@ class _LogsConfigModalWidgetState extends State<LogsConfigModalWidget> {
child: Icon( child: Icon(
Icons.settings, Icons.settings,
size: 24, size: 24,
color: Theme.of(context).colorScheme.secondary, color: Theme.of(context).listTileTheme.iconColor
), ),
), ),
const SizedBox(height: 16), const SizedBox(height: 16),

View file

@ -195,7 +195,7 @@ class _LogsFiltersModalWidgetState extends State<LogsFiltersModalWidget> {
child: Icon( child: Icon(
Icons.filter_list_rounded, Icons.filter_list_rounded,
size: 24, size: 24,
color: Theme.of(context).colorScheme.secondary, color: Theme.of(context).listTileTheme.iconColor
), ),
), ),
Text( Text(

View file

@ -88,10 +88,10 @@ class _ServersState extends State<Servers> {
right: 20, right: 20,
child: FloatingActionButton( child: FloatingActionButton(
onPressed: openAddServerModal, onPressed: openAddServerModal,
backgroundColor: Theme.of(context).colorScheme.primaryContainer, backgroundColor: Theme.of(context).floatingActionButtonTheme.backgroundColor,
child: Icon( child: Icon(
Icons.add, Icons.add,
color: Theme.of(context).colorScheme.onPrimaryContainer color: Theme.of(context).floatingActionButtonTheme.foregroundColor,
), ),
), ),
), ),

View file

@ -117,9 +117,7 @@ class _AccessSettingsWidgetState extends State<AccessSettingsWidget> with Ticker
color: Theme.of(context).scaffoldBackgroundColor, color: Theme.of(context).scaffoldBackgroundColor,
border: Border( border: Border(
top: BorderSide( top: BorderSide(
color: Theme.of(context).brightness == Brightness.light color: Theme.of(context).colorScheme.onSurface.withOpacity(0.1)
? const Color.fromRGBO(220, 220, 220, 1)
: const Color.fromRGBO(50, 50, 50, 1)
) )
) )
), ),

View file

@ -86,7 +86,7 @@ class _AddClientModalState extends State<AddClientModal> {
Icon( Icon(
icon(), icon(),
size: 24, size: 24,
color: Theme.of(context).colorScheme.secondary, color: Theme.of(context).listTileTheme.iconColor
), ),
const SizedBox(height: 16), const SizedBox(height: 16),
Text( Text(

View file

@ -246,7 +246,7 @@ class _ClientsListState extends State<ClientsList> {
children: [ children: [
Icon( Icon(
Icons.info_rounded, Icons.info_rounded,
color: Theme.of(context).colorScheme.secondary, color: Theme.of(context).listTileTheme.iconColor,
), ),
const SizedBox(width: 20), const SizedBox(width: 20),
Flexible( Flexible(
@ -267,7 +267,13 @@ class _ClientsListState extends State<ClientsList> {
padding: const EdgeInsets.only(top: 0), padding: const EdgeInsets.only(top: 0),
itemCount: widget.data.length, itemCount: widget.data.length,
itemBuilder: (context, index) => ListTile( itemBuilder: (context, index) => ListTile(
title: Text(widget.data[index]), title: Text(
widget.data[index],
style: TextStyle(
fontWeight: FontWeight.normal,
color: Theme.of(context).colorScheme.onSurface
),
),
trailing: IconButton( trailing: IconButton(
onPressed: () => { onPressed: () => {
showDialog( showDialog(
@ -315,7 +321,7 @@ class _ClientsListState extends State<ClientsList> {
: -70, : -70,
right: 20, right: 20,
child: FloatingActionButton( child: FloatingActionButton(
backgroundColor: Theme.of(context).colorScheme.primaryContainer, backgroundColor: Theme.of(context).floatingActionButtonTheme.backgroundColor,
onPressed: () { onPressed: () {
showModalBottomSheet( showModalBottomSheet(
context: context, context: context,
@ -329,7 +335,7 @@ class _ClientsListState extends State<ClientsList> {
}, },
child: Icon( child: Icon(
Icons.add, Icons.add,
color: Theme.of(context).colorScheme.onPrimaryContainer color: Theme.of(context).floatingActionButtonTheme.foregroundColor,
), ),
), ),
) )

View file

@ -68,7 +68,7 @@ class _AddStaticLeaseModalState extends State<AddStaticLeaseModal> {
return Padding( return Padding(
padding: MediaQuery.of(context).viewInsets, padding: MediaQuery.of(context).viewInsets,
child: Container( child: Container(
height: 550, height: 510,
decoration: BoxDecoration( decoration: BoxDecoration(
color: Theme.of(context).dialogBackgroundColor, color: Theme.of(context).dialogBackgroundColor,
borderRadius: const BorderRadius.only( borderRadius: const BorderRadius.only(
@ -84,22 +84,24 @@ class _AddStaticLeaseModalState extends State<AddStaticLeaseModal> {
? const NeverScrollableScrollPhysics() ? const NeverScrollableScrollPhysics()
: null, : null,
children: [ children: [
const Padding( Padding(
padding: EdgeInsets.only(top: 28), padding: const EdgeInsets.only(top: 24),
child: Icon( child: Icon(
Icons.add, Icons.add,
size: 26, size: 24,
color: Theme.of(context).listTileTheme.iconColor
), ),
), ),
const SizedBox(height: 20), const SizedBox(height: 16),
Text( Text(
AppLocalizations.of(context)!.addStaticLease, AppLocalizations.of(context)!.addStaticLease,
textAlign: TextAlign.center, textAlign: TextAlign.center,
style: const TextStyle( style: TextStyle(
fontSize: 24 fontSize: 24,
color: Theme.of(context).colorScheme.onSurface
), ),
), ),
const SizedBox(height: 30), const SizedBox(height: 16),
Padding( Padding(
padding: const EdgeInsets.symmetric(horizontal: 28), padding: const EdgeInsets.symmetric(horizontal: 28),
child: TextFormField( child: TextFormField(

View file

@ -14,18 +14,27 @@ class DeleteStaticLeaseModal extends StatelessWidget {
return AlertDialog( return AlertDialog(
title: Column( title: Column(
children: [ children: [
const Icon( Icon(
Icons.delete_rounded, Icons.delete_rounded,
size: 26, size: 24,
color: Theme.of(context).listTileTheme.iconColor
), ),
const SizedBox(height: 20), const SizedBox(height: 16),
Text( Text(
AppLocalizations.of(context)!.deleteStaticLease, AppLocalizations.of(context)!.deleteStaticLease,
textAlign: TextAlign.center, textAlign: TextAlign.center,
style: TextStyle(
color: Theme.of(context).colorScheme.onSurface
),
) )
], ],
), ),
content: Text(AppLocalizations.of(context)!.deleteStaticLeaseDescription), content: Text(
AppLocalizations.of(context)!.deleteStaticLeaseDescription,
style: TextStyle(
color: Theme.of(context).colorScheme.onSurfaceVariant
),
),
actions: [ actions: [
TextButton( TextButton(
onPressed: () => Navigator.pop(context), onPressed: () => Navigator.pop(context),

View file

@ -409,7 +409,7 @@ class _DhcpWidgetState extends State<DhcpWidget> {
selectedInterface!.name, selectedInterface!.name,
style: TextStyle( style: TextStyle(
fontSize: 14, fontSize: 14,
color: Theme.of(context).colorScheme.onSurfaceVariant, color: Theme.of(context).listTileTheme.textColor
), ),
) )
] ]

View file

@ -184,9 +184,10 @@ class DhcpLeases extends StatelessWidget {
floatingActionButton: staticLeases == true floatingActionButton: staticLeases == true
? FloatingActionButton( ? FloatingActionButton(
onPressed: openAddStaticLease, onPressed: openAddStaticLease,
backgroundColor: Theme.of(context).floatingActionButtonTheme.backgroundColor,
child: Icon( child: Icon(
Icons.add, Icons.add,
color: Theme.of(context).primaryColor.computeLuminance() > 0.5 ? Colors.black : Colors.white, color: Theme.of(context).floatingActionButtonTheme.foregroundColor,
), ),
) )
: null, : null,

View file

@ -36,7 +36,7 @@ class SelectInterfaceModal extends StatelessWidget {
child: Icon( child: Icon(
Icons.settings_ethernet_rounded, Icons.settings_ethernet_rounded,
size: 24, size: 24,
color: Theme.of(context).colorScheme.secondary, color: Theme.of(context).listTileTheme.iconColor
), ),
), ),
const SizedBox(height: 16), const SizedBox(height: 16),

View file

@ -142,7 +142,7 @@ class _BootstrapDnsScreenState extends State<BootstrapDnsScreen> {
children: [ children: [
Icon( Icon(
Icons.info_rounded, Icons.info_rounded,
color: Theme.of(context).colorScheme.secondary color: Theme.of(context).listTileTheme.iconColor,
), ),
const SizedBox(width: 20), const SizedBox(width: 20),
Flexible( Flexible(

View file

@ -175,7 +175,7 @@ class _PrivateReverseDnsServersScreenState extends State<PrivateReverseDnsServer
children: [ children: [
Icon( Icon(
Icons.info_rounded, Icons.info_rounded,
color: Theme.of(context).colorScheme.secondary color: Theme.of(context).listTileTheme.iconColor,
), ),
const SizedBox(width: 20), const SizedBox(width: 20),
Flexible( Flexible(

View file

@ -72,7 +72,7 @@ class _AddDnsRewriteModalState extends State<AddDnsRewriteModal> {
child: Icon( child: Icon(
Icons.add, Icons.add,
size: 24, size: 24,
color: Theme.of(context).colorScheme.secondary, color: Theme.of(context).listTileTheme.iconColor
), ),
), ),
const SizedBox(height: 16), const SizedBox(height: 16),

View file

@ -286,6 +286,7 @@ class _DnsRewritesWidgetState extends State<DnsRewritesWidget> {
), ),
body: generateBody(), body: generateBody(),
floatingActionButton: FloatingActionButton( floatingActionButton: FloatingActionButton(
backgroundColor: Theme.of(context).floatingActionButtonTheme.backgroundColor,
onPressed: () => { onPressed: () => {
showModalBottomSheet( showModalBottomSheet(
context: context, context: context,
@ -298,7 +299,7 @@ class _DnsRewritesWidgetState extends State<DnsRewritesWidget> {
}, },
child: Icon( child: Icon(
Icons.add, Icons.add,
color: Theme.of(context).primaryColor.computeLuminance() > 0.5 ? Colors.black : Colors.white, color: Theme.of(context).floatingActionButtonTheme.foregroundColor,
), ),
), ),
); );

View file

@ -376,7 +376,7 @@ class _EncryptionSettingsWidgetState extends State<EncryptionSettingsWidget> {
children: [ children: [
Icon( Icon(
Icons.info_rounded, Icons.info_rounded,
color: Theme.of(context).colorScheme.secondary, color: Theme.of(context).listTileTheme.iconColor,
), ),
const SizedBox(width: 20), const SizedBox(width: 20),
Flexible( Flexible(

View file

@ -49,7 +49,7 @@ class EncryptionMasterSwitch extends StatelessWidget {
AppLocalizations.of(context)!.enableEncryptionTypes, AppLocalizations.of(context)!.enableEncryptionTypes,
style: TextStyle( style: TextStyle(
fontSize: 14, fontSize: 14,
color: Theme.of(context).colorScheme.onSurfaceVariant color: Theme.of(context).listTileTheme.textColor
), ),
) )
], ],

View file

@ -16,7 +16,7 @@ class DnsAddressesModal extends StatelessWidget {
children: [ children: [
Icon( Icon(
Icons.route_rounded, Icons.route_rounded,
color: Theme.of(context).colorScheme.secondary, color: Theme.of(context).listTileTheme.iconColor
), ),
const SizedBox(height: 16), const SizedBox(height: 16),
Text( Text(
@ -37,7 +37,7 @@ class DnsAddressesModal extends StatelessWidget {
address, address,
style: TextStyle( style: TextStyle(
fontWeight: FontWeight.normal, fontWeight: FontWeight.normal,
color: Theme.of(context).colorScheme.onSurfaceVariant color: Theme.of(context).listTileTheme.textColor
), ),
), ),
)).toList(), )).toList(),

View file

@ -180,7 +180,7 @@ class _TopItemsScreenState extends State<TopItemsScreen> {
child: Text( child: Text(
"${doubleFormat((screenData[index].values.toList()[0]/total*100), Platform.localeName)}%", "${doubleFormat((screenData[index].values.toList()[0]/total*100), Platform.localeName)}%",
style: TextStyle( style: TextStyle(
color: Theme.of(context).colorScheme.onSurfaceVariant color: Theme.of(context).listTileTheme.textColor
), ),
), ),
), ),

View file

@ -252,7 +252,11 @@ class _AddServerModalState extends State<AddServerModal> {
0: Text( 0: Text(
'HTTP', 'HTTP',
style: TextStyle( style: TextStyle(
color: Theme.of(context).colorScheme.onSurface, color: appConfigProvider.useDynamicColor == true
? Theme.of(context).floatingActionButtonTheme.foregroundColor!
: connectionType == 'http'
? Colors.white
: Theme.of(context).primaryColor,
fontSize: 14, fontSize: 14,
fontWeight: FontWeight.w500 fontWeight: FontWeight.w500
), ),
@ -260,7 +264,11 @@ class _AddServerModalState extends State<AddServerModal> {
1: Text( 1: Text(
'HTTPS', 'HTTPS',
style: TextStyle( style: TextStyle(
color: Theme.of(context).colorScheme.onSurface, color: appConfigProvider.useDynamicColor == true
? Theme.of(context).floatingActionButtonTheme.foregroundColor!
: connectionType == 'https'
? Colors.white
: Theme.of(context).primaryColor,
fontSize: 14, fontSize: 14,
fontWeight: FontWeight.w500 fontWeight: FontWeight.w500
), ),
@ -475,13 +483,11 @@ class _AddServerModalState extends State<AddServerModal> {
); );
} }
} }
print(connectionType);
return Stack( return Stack(
children: [ children: [
Scaffold( Scaffold(
backgroundColor: Theme.of(context).dialogBackgroundColor, appBar: AppBar(
appBar: AppBar(
systemOverlayStyle: systemUiOverlayStyleConfig(context),
title: Text(AppLocalizations.of(context)!.createConnection), title: Text(AppLocalizations.of(context)!.createConnection),
actions: [ actions: [
Padding( Padding(
@ -560,7 +566,7 @@ print(connectionType);
connectionType = 'https'; connectionType = 'https';
} }
}), }),
selectedColor: Theme.of(context).colorScheme.secondaryContainer, selectedColor: Theme.of(context).floatingActionButtonTheme.backgroundColor!,
unselectedColor: Colors.transparent, unselectedColor: Colors.transparent,
borderColor: Theme.of(context).colorScheme.onSurface, borderColor: Theme.of(context).colorScheme.onSurface,
), ),

View file

@ -39,7 +39,7 @@ class CustomListTile extends StatelessWidget {
Icon( Icon(
icon, icon,
size: 24, size: 24,
color: Theme.of(context).colorScheme.onSurfaceVariant, color: Theme.of(context).listTileTheme.iconColor,
), ),
const SizedBox(width: 16), const SizedBox(width: 16),
], ],
@ -61,7 +61,7 @@ class CustomListTile extends StatelessWidget {
if (subtitle != null && subtitleWidget == null) Text( if (subtitle != null && subtitleWidget == null) Text(
subtitle!, subtitle!,
style: TextStyle( style: TextStyle(
color: Theme.of(context).colorScheme.onSurfaceVariant, color: Theme.of(context).listTileTheme.textColor,
fontSize: 14, fontSize: 14,
fontWeight: FontWeight.w400 fontWeight: FontWeight.w400
), ),

View file

@ -59,7 +59,7 @@ class CustomRadioListTile extends StatelessWidget {
child: Text( child: Text(
subtitle!, subtitle!,
style: TextStyle( style: TextStyle(
color: Theme.of(context).colorScheme.onSurfaceVariant, color: Theme.of(context).listTileTheme.textColor,
fontSize: 14 fontSize: 14
), ),
), ),

View file

@ -55,8 +55,8 @@ class CustomSwitchListTile extends StatelessWidget {
style: TextStyle( style: TextStyle(
fontSize: 14, fontSize: 14,
color: disabled != null && disabled == true color: disabled != null && disabled == true
? Theme.of(context).colorScheme.onSurfaceVariant.withOpacity(0.38) ? Theme.of(context).listTileTheme.textColor!.withOpacity(0.38)
: Theme.of(context).colorScheme.onSurfaceVariant : Theme.of(context).listTileTheme.textColor
), ),
), ),
), ),

View file

@ -49,7 +49,7 @@ class DeleteModal extends StatelessWidget {
Icon( Icon(
Icons.delete, Icons.delete,
size: 24, size: 24,
color: Theme.of(context).colorScheme.secondary color: Theme.of(context).listTileTheme.iconColor
), ),
Padding( Padding(
padding: const EdgeInsets.only(top: 16), padding: const EdgeInsets.only(top: 16),

View file

@ -187,12 +187,12 @@ class _ServersListState extends State<ServersList> with SingleTickerProviderStat
Container( Container(
padding: const EdgeInsets.all(1), padding: const EdgeInsets.all(1),
decoration: BoxDecoration( decoration: BoxDecoration(
color: Theme.of(context).colorScheme.primaryContainer, color: Theme.of(context).floatingActionButtonTheme.backgroundColor,
borderRadius: BorderRadius.circular(20) borderRadius: BorderRadius.circular(20)
), ),
child: Icon( child: Icon(
Icons.star, Icons.star,
color: Theme.of(context).colorScheme.onPrimaryContainer, color: Theme.of(context).floatingActionButtonTheme.foregroundColor,
size: 10, size: 10,
), ),
), ),

View file

@ -37,7 +37,7 @@ class _UpdateModalState extends State<UpdateModal> {
Icon( Icon(
Icons.system_update_rounded, Icons.system_update_rounded,
size: 24, size: 24,
color: Theme.of(context).colorScheme.secondary, color: Theme.of(context).listTileTheme.iconColor,
), ),
const SizedBox(height: 16), const SizedBox(height: 16),
Text( Text(