This commit is contained in:
atlasan 2023-02-26 02:26:12 +01:00
parent a0a3910adc
commit f5904e4f88
2 changed files with 3 additions and 8 deletions

View File

@ -100,8 +100,7 @@ class UnlockingWallet extends StatelessWidget {
style: const TextStyle(
fontSize: 25,
color: Colors.black,
fontWeight: FontWeight.w700
),
fontWeight: FontWeight.w700),
)),
]),
SizedBox(height: 30 * ratio),
@ -112,8 +111,7 @@ class UnlockingWallet extends StatelessWidget {
style: const TextStyle(
fontSize: 19,
color: Colors.black,
fontWeight: FontWeight.w400
),
fontWeight: FontWeight.w400),
)),
SizedBox(height: 30 * ratio),
if (!myWalletProvider.isPinValid &&

View File

@ -5,7 +5,6 @@ import 'package:flutter/material.dart';
// --- THIS IS WIP ---
class GeckoStyles {
TextStyle successBold(List<String> pars) {
return TextStyle(
color: Colors.green.shade600,
@ -14,9 +13,7 @@ class GeckoStyles {
}
TextStyle success() {
return TextStyle(
color: Colors.green.shade600
);
return TextStyle(color: Colors.green.shade600);
}
TextStyle error500(List<String> pars) {