mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-05-04 12:24:47 +00:00
Minor fixes
This commit is contained in:
parent
50c3ca720e
commit
1a6cbc71c3
4 changed files with 25 additions and 3 deletions
|
@ -188,6 +188,13 @@ ThemeData lightThemeOldVersions() => ThemeData(
|
|||
overlayColor: MaterialStateProperty.all(primaryColor.withOpacity(0.1))
|
||||
),
|
||||
),
|
||||
elevatedButtonTheme: ElevatedButtonThemeData(
|
||||
style: ButtonStyle(
|
||||
foregroundColor: MaterialStateProperty.all(primaryColor),
|
||||
surfaceTintColor: MaterialStateProperty.all(primaryColor),
|
||||
overlayColor: MaterialStateProperty.all(primaryColor.shade50),
|
||||
)
|
||||
),
|
||||
navigationBarTheme: NavigationBarThemeData(
|
||||
surfaceTintColor: primaryColor,
|
||||
indicatorColor: primaryColor
|
||||
|
@ -276,6 +283,13 @@ ThemeData darkThemeOldVersions() => ThemeData(
|
|||
overlayColor: MaterialStateProperty.all(primaryColor.withOpacity(0.1))
|
||||
),
|
||||
),
|
||||
elevatedButtonTheme: ElevatedButtonThemeData(
|
||||
style: ButtonStyle(
|
||||
foregroundColor: MaterialStateProperty.all(primaryColor),
|
||||
surfaceTintColor: MaterialStateProperty.all(primaryColor),
|
||||
overlayColor: MaterialStateProperty.all(primaryColor.shade50),
|
||||
)
|
||||
),
|
||||
inputDecorationTheme: InputDecorationTheme(
|
||||
floatingLabelStyle: TextStyle(
|
||||
color: primaryColor
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue