design: Textfield bordercolors
This commit is contained in:
parent
58dfa6afc2
commit
a8ecba4193
1 changed files with 12 additions and 0 deletions
|
|
@ -56,6 +56,12 @@ abstract class FluffyThemes {
|
||||||
),
|
),
|
||||||
inputDecorationTheme: InputDecorationTheme(
|
inputDecorationTheme: InputDecorationTheme(
|
||||||
border: OutlineInputBorder(borderRadius: BorderRadius.circular(12)),
|
border: OutlineInputBorder(borderRadius: BorderRadius.circular(12)),
|
||||||
|
enabledBorder: OutlineInputBorder(
|
||||||
|
borderRadius: BorderRadius.circular(12),
|
||||||
|
borderSide: BorderSide(
|
||||||
|
color: AppConfig.primaryColor.withAlpha(16),
|
||||||
|
),
|
||||||
|
),
|
||||||
filled: true,
|
filled: true,
|
||||||
fillColor: AppConfig.primaryColor.withAlpha(16),
|
fillColor: AppConfig.primaryColor.withAlpha(16),
|
||||||
),
|
),
|
||||||
|
|
@ -100,6 +106,12 @@ abstract class FluffyThemes {
|
||||||
border: OutlineInputBorder(borderRadius: BorderRadius.circular(12)),
|
border: OutlineInputBorder(borderRadius: BorderRadius.circular(12)),
|
||||||
filled: true,
|
filled: true,
|
||||||
fillColor: AppConfig.primaryColorLight.withAlpha(32),
|
fillColor: AppConfig.primaryColorLight.withAlpha(32),
|
||||||
|
enabledBorder: OutlineInputBorder(
|
||||||
|
borderRadius: BorderRadius.circular(12),
|
||||||
|
borderSide: BorderSide(
|
||||||
|
color: AppConfig.primaryColor.withAlpha(16),
|
||||||
|
),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
appBarTheme: AppBarTheme(
|
appBarTheme: AppBarTheme(
|
||||||
brightness: Brightness.dark,
|
brightness: Brightness.dark,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue