mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-25 19:55:52 +00:00
theme switching color fixes
This commit is contained in:
parent
05934e28d9
commit
a94feef80e
1 changed files with 5 additions and 0 deletions
|
@ -763,6 +763,8 @@ class _ExchangeFormState extends ConsumerState<ExchangeForm> {
|
||||||
height: isDesktop ? 10 : 4,
|
height: isDesktop ? 10 : 4,
|
||||||
),
|
),
|
||||||
ExchangeTextField(
|
ExchangeTextField(
|
||||||
|
key: Key(
|
||||||
|
"exchangeTextFieldKeyFor_${Theme.of(context).extension<StackColors>()!.themeType.name}"),
|
||||||
controller: _sendController,
|
controller: _sendController,
|
||||||
focusNode: _sendFocusNode,
|
focusNode: _sendFocusNode,
|
||||||
textStyle: STextStyles.smallMed14(context).copyWith(
|
textStyle: STextStyles.smallMed14(context).copyWith(
|
||||||
|
@ -851,6 +853,8 @@ class _ExchangeFormState extends ConsumerState<ExchangeForm> {
|
||||||
height: isDesktop ? 10 : 7,
|
height: isDesktop ? 10 : 7,
|
||||||
),
|
),
|
||||||
ExchangeTextField(
|
ExchangeTextField(
|
||||||
|
key: Key(
|
||||||
|
"exchangeTextFieldKeyFor1_${Theme.of(context).extension<StackColors>()!.themeType.name}"),
|
||||||
focusNode: _receiveFocusNode,
|
focusNode: _receiveFocusNode,
|
||||||
controller: _receiveController,
|
controller: _receiveController,
|
||||||
textStyle: STextStyles.smallMed14(context).copyWith(
|
textStyle: STextStyles.smallMed14(context).copyWith(
|
||||||
|
@ -897,6 +901,7 @@ class _ExchangeFormState extends ConsumerState<ExchangeForm> {
|
||||||
SizedBox(
|
SizedBox(
|
||||||
height: 60,
|
height: 60,
|
||||||
child: RateTypeToggle(
|
child: RateTypeToggle(
|
||||||
|
key: UniqueKey(),
|
||||||
onChanged: onRateTypeChanged,
|
onChanged: onRateTypeChanged,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
Loading…
Reference in a new issue