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