mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-04-02 20:49:10 +00:00
parent
37555a8320
commit
d1de481558
1 changed files with 7 additions and 7 deletions
|
@ -136,7 +136,7 @@ class PinCodeState<T extends PinCodeWidget> extends State<T> {
|
|||
},
|
||||
child: Container(
|
||||
color: Theme.of(context).colorScheme.background,
|
||||
padding: EdgeInsets.only(left: 40.0, right: 40.0, bottom: 40.0),
|
||||
padding: EdgeInsets.only(left: 40.0, right: 40.0, bottom: 60.0),
|
||||
child: Column(
|
||||
children: <Widget>[
|
||||
Spacer(flex: 2),
|
||||
|
@ -146,7 +146,7 @@ class PinCodeState<T extends PinCodeWidget> extends State<T> {
|
|||
fontWeight: FontWeight.w500,
|
||||
color:
|
||||
Theme.of(context).extension<CakeTextTheme>()!.titleColor)),
|
||||
Spacer(flex: 3),
|
||||
Spacer(flex: 8),
|
||||
Container(
|
||||
width: 180,
|
||||
child: Row(
|
||||
|
@ -168,7 +168,7 @@ class PinCodeState<T extends PinCodeWidget> extends State<T> {
|
|||
}),
|
||||
),
|
||||
),
|
||||
Spacer(flex: 2),
|
||||
Spacer(flex: 3),
|
||||
if (widget.hasLengthSwitcher) ...[
|
||||
TextButton(
|
||||
onPressed: () {
|
||||
|
@ -204,8 +204,8 @@ class PinCodeState<T extends PinCodeWidget> extends State<T> {
|
|||
childAspectRatio: _aspectRatio,
|
||||
physics: const NeverScrollableScrollPhysics(),
|
||||
children: List.generate(12, (index) {
|
||||
const double marginRight = 15;
|
||||
const double marginLeft = 15;
|
||||
const double marginRight = 8;
|
||||
const double marginLeft = 8;
|
||||
|
||||
if (index == 9) {
|
||||
// Empty container
|
||||
|
@ -243,12 +243,12 @@ class PinCodeState<T extends PinCodeWidget> extends State<T> {
|
|||
key: ValueKey('pin_code_button_${index}_key'),
|
||||
onPressed: () => _push(index),
|
||||
style: TextButton.styleFrom(
|
||||
backgroundColor: Theme.of(context).colorScheme.background,
|
||||
backgroundColor: Theme.of(context).cardColor,
|
||||
shape: CircleBorder(),
|
||||
),
|
||||
child: Text('$index',
|
||||
style: TextStyle(
|
||||
fontSize: 30.0,
|
||||
fontSize: 25.0,
|
||||
fontWeight: FontWeight.w600,
|
||||
color: Theme.of(context).extension<CakeTextTheme>()!.titleColor)),
|
||||
),
|
||||
|
|
Loading…
Reference in a new issue