Merge pull request 'better ui/ux on 2fa page' (#334) from SEND038 into main
Some checks failed
ci/woodpecker/push/billing_fees Pipeline was successful
ci/woodpecker/push/db Pipeline was successful
ci/woodpecker/push/bff Pipeline was successful
ci/woodpecker/push/discovery Pipeline was successful
ci/woodpecker/push/fx_ingestor Pipeline was successful
ci/woodpecker/push/fx_oracle Pipeline failed
ci/woodpecker/push/frontend Pipeline was successful
ci/woodpecker/push/gateway_mntx Pipeline was successful
ci/woodpecker/push/gateway_chain Pipeline was successful
ci/woodpecker/push/gateway_tgsettle Pipeline was successful
ci/woodpecker/push/nats Pipeline was successful
ci/woodpecker/push/ledger Pipeline was successful
ci/woodpecker/push/notification Pipeline was successful
ci/woodpecker/push/payments_orchestrator Pipeline was successful

Reviewed-on: #334
Reviewed-by: tech <tech.sendico@proton.me>
This commit was merged in pull request #334.
This commit is contained in:
2026-01-28 13:43:41 +00:00

View File

@@ -18,12 +18,13 @@ class TwoFactorCodeInput extends StatelessWidget {
autoFocus: true, autoFocus: true,
keyboardType: TextInputType.number, keyboardType: TextInputType.number,
animationType: AnimationType.fade, animationType: AnimationType.fade,
cursorColor: Theme.of(context).colorScheme.primary,
pinTheme: PinTheme( pinTheme: PinTheme(
shape: PinCodeFieldShape.box, shape: PinCodeFieldShape.box,
borderRadius: BorderRadius.circular(4), borderRadius: BorderRadius.circular(4),
fieldHeight: 48, fieldHeight: 48,
fieldWidth: 40, fieldWidth: 40,
inactiveColor: Theme.of(context).dividerColor, inactiveColor: Theme.of(context).colorScheme.primaryContainer,
activeColor: Theme.of(context).colorScheme.primary, activeColor: Theme.of(context).colorScheme.primary,
selectedColor: Theme.of(context).colorScheme.primary, selectedColor: Theme.of(context).colorScheme.primary,
), ),