Correction for autocomplete
This commit is contained in:
parent
d8f4ed78d1
commit
28b25c1454
|
|
@ -201,7 +201,8 @@ class InvoiceNinjaAppState extends State<InvoiceNinjaApp> {
|
||||||
bottomAppBarColor: Colors.white,
|
bottomAppBarColor: Colors.white,
|
||||||
primaryColorDark:
|
primaryColorDark:
|
||||||
hasAccentColor ? accentColor : const Color(0xFF0D5D91),
|
hasAccentColor ? accentColor : const Color(0xFF0D5D91),
|
||||||
primaryColorLight: const Color(0xFF5dabf4),
|
primaryColorLight:
|
||||||
|
hasAccentColor ? accentColor : const Color(0xFF5dabf4),
|
||||||
buttonColor:
|
buttonColor:
|
||||||
hasAccentColor ? accentColor : const Color(0xFF0D5D91),
|
hasAccentColor ? accentColor : const Color(0xFF0D5D91),
|
||||||
scaffoldBackgroundColor: const Color(0xFFE7EBEE),
|
scaffoldBackgroundColor: const Color(0xFFE7EBEE),
|
||||||
|
|
|
||||||
|
|
@ -207,7 +207,7 @@ class _EntityDropdownState extends State<EntityDropdown> {
|
||||||
},
|
},
|
||||||
textFieldConfiguration: TextFieldConfiguration(
|
textFieldConfiguration: TextFieldConfiguration(
|
||||||
controller: _textController,
|
controller: _textController,
|
||||||
autofocus: widget.autofocus ?? false,
|
//autofocus: widget.autofocus ?? false,
|
||||||
decoration: InputDecoration(
|
decoration: InputDecoration(
|
||||||
labelText: widget.labelText,
|
labelText: widget.labelText,
|
||||||
),
|
),
|
||||||
|
|
|
||||||
|
|
@ -664,8 +664,6 @@ class _EntityFilter extends StatelessWidget {
|
||||||
? state.accentColor
|
? state.accentColor
|
||||||
: Theme.of(context).cardColor;
|
: Theme.of(context).cardColor;
|
||||||
|
|
||||||
print('enableDarkMode: ${state.prefState.enableDarkMode} + hasAccentColor: ${state.hasAccentColor}');
|
|
||||||
|
|
||||||
return Material(
|
return Material(
|
||||||
color: backgroundColor,
|
color: backgroundColor,
|
||||||
child: AnimatedContainer(
|
child: AnimatedContainer(
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue