Correct header underline color
This commit is contained in:
parent
482f56eebf
commit
6afcfdae01
|
|
@ -894,7 +894,11 @@ class _EntityFilter extends StatelessWidget {
|
|||
border: relatedTypes[i] == routeEntityType
|
||||
? Border(
|
||||
bottom: BorderSide(
|
||||
color: state.accentColor,
|
||||
color: state.prefState
|
||||
.enableDarkMode ||
|
||||
!state.hasAccentColor
|
||||
? state.accentColor
|
||||
: Colors.white,
|
||||
width: 2,
|
||||
),
|
||||
)
|
||||
|
|
|
|||
|
|
@ -144,6 +144,7 @@ class _PasswordConfirmationState extends State<PasswordConfirmation> {
|
|||
return AlertDialog(
|
||||
title: Text(localization.verifyPassword),
|
||||
content: TextField(
|
||||
autofocus: true,
|
||||
onChanged: (value) => _password = value,
|
||||
obscureText: _isPasswordObscured,
|
||||
keyboardType: TextInputType.visiblePassword,
|
||||
|
|
|
|||
Loading…
Reference in New Issue