Skip to content
Snippets Groups Projects
Commit 83a5d095 authored by poka's avatar poka :speech_balloon:
Browse files

enh: decrease font size

parent 0bf9a42d
No related branches found
No related tags found
No related merge requests found
Pipeline #36871 failed
Showing
with 85 additions and 85 deletions
......@@ -157,12 +157,12 @@ class Gecko extends StatelessWidget {
scaffoldBackgroundColor: backgroundColor,
canvasColor: backgroundColor,
dialogBackgroundColor: backgroundColor,
textTheme: const TextTheme(
bodyLarge: TextStyle(fontSize: 16),
bodyMedium: TextStyle(fontSize: 18),
).apply(
bodyColor: const Color(0xFF000000),
),
// textTheme: const TextTheme(
// bodyLarge: TextStyle(fontSize: 13),
// bodyMedium: TextStyle(fontSize: 15),
// ).apply(
// bodyColor: const Color(0xFF000000),
// ),
colorScheme:
ColorScheme.fromSwatch().copyWith(secondary: Colors.grey[850]),
),
......
......@@ -7,7 +7,7 @@ double scaleSize(double size) {
}
TextStyle scaledTextStyle({
double fontSize = 16,
double fontSize = 14,
double? height,
FontStyle? fontStyle,
FontWeight? fontWeight,
......
......@@ -59,13 +59,13 @@ class ChestProvider with ChangeNotifier {
return AlertDialog(
title: Text(
'areYouSureToDeleteWallet'.tr(args: [walletName!]),
style: scaledTextStyle(fontSize: 17),
style: scaledTextStyle(fontSize: 16),
),
actions: <Widget>[
TextButton(
child: Text("no".tr(),
style:
scaledTextStyle(fontSize: 17, color: Colors.blueAccent),
scaledTextStyle(fontSize: 16, color: Colors.blueAccent),
key: keyCancel),
onPressed: () {
Navigator.pop(context, false);
......@@ -73,7 +73,7 @@ class ChestProvider with ChangeNotifier {
),
TextButton(
child: Text("yes".tr(),
style: scaledTextStyle(fontSize: 17, color: Colors.red),
style: scaledTextStyle(fontSize: 16, color: Colors.red),
key: keyConfirm),
onPressed: () {
Navigator.pop(context, true);
......
......@@ -1339,7 +1339,7 @@ void snackNode(bool isConnected) {
final snackBar = SnackBar(
backgroundColor: Colors.grey[900],
padding: const EdgeInsets.all(20),
content: Text(message, style: scaledTextStyle(fontSize: 14)),
content: Text(message, style: scaledTextStyle(fontSize: 13)),
duration: const Duration(seconds: 4));
ScaffoldMessenger.of(homeContext).showSnackBar(snackBar);
}
......
......@@ -171,7 +171,7 @@ class WalletOptionsProvider with ChangeNotifier {
title: Text(
'confirmYourIdentity'.tr(),
textAlign: TextAlign.center,
style: const TextStyle(fontSize: 17, fontWeight: FontWeight.w500),
style: const TextStyle(fontSize: 16, fontWeight: FontWeight.w500),
),
content: SizedBox(
height: 100,
......@@ -196,7 +196,7 @@ class WalletOptionsProvider with ChangeNotifier {
textAlign: TextAlign.center,
autofocus: true,
controller: idtyName,
style: const TextStyle(fontSize: 17),
style: const TextStyle(fontSize: 16),
),
const SizedBox(height: 10),
Consumer<WalletOptionsProvider>(builder: (context, wOptions, _) {
......@@ -250,7 +250,7 @@ class WalletOptionsProvider with ChangeNotifier {
child: Text(
"validate".tr(),
style: TextStyle(
fontSize: 21,
fontSize: 20,
color: canValidate
? const Color(0xffD80000)
: Colors.grey[500]),
......@@ -278,7 +278,7 @@ class WalletOptionsProvider with ChangeNotifier {
title: Text(
'chooseWalletName'.tr(),
textAlign: TextAlign.center,
style: const TextStyle(fontSize: 20, fontWeight: FontWeight.w500),
style: const TextStyle(fontSize: 19, fontWeight: FontWeight.w500),
),
content: SizedBox(
height: 100,
......@@ -289,7 +289,7 @@ class WalletOptionsProvider with ChangeNotifier {
textAlign: TextAlign.center,
autofocus: true,
controller: walletName,
style: const TextStyle(fontSize: 19),
style: const TextStyle(fontSize: 18),
)
]),
),
......@@ -304,7 +304,7 @@ class WalletOptionsProvider with ChangeNotifier {
child: Text(
"validate".tr(),
style: TextStyle(
fontSize: 21,
fontSize: 20,
color: canValidateNameBool
? const Color(0xffD80000)
: Colors.grey,
......@@ -331,7 +331,7 @@ class WalletOptionsProvider with ChangeNotifier {
child: Text(
"cancel".tr(),
style: TextStyle(
fontSize: 18,
fontSize: 17,
color: Colors.grey[800],
fontWeight: FontWeight.w300),
),
......
......@@ -135,7 +135,7 @@ snackCopyKey(context) {
backgroundColor: Colors.grey[900],
padding: EdgeInsets.all(scaleSize(19)),
content: Text("thisAddressHasBeenCopiedToClipboard".tr(),
style: scaledTextStyle(fontSize: 14)),
style: scaledTextStyle(fontSize: 13)),
duration: const Duration(seconds: 2));
ScaffoldMessenger.of(context).showSnackBar(snackBar);
}
......@@ -145,7 +145,7 @@ snackCopySeed(context) {
backgroundColor: Colors.grey[900],
padding: EdgeInsets.all(scaleSize(19)),
content: Text("thisMnemonicHasBeenCopiedToClipboard".tr(),
style: scaledTextStyle(fontSize: 14)),
style: scaledTextStyle(fontSize: 13)),
duration: const Duration(seconds: 4));
ScaffoldMessenger.of(context).showSnackBar(snackBar);
}
......@@ -44,7 +44,7 @@ class _ActivityScreenState extends State<ActivityScreen> {
toolbarHeight: scaleSize(57),
title: Text(
'accountActivity'.tr(),
style: scaledTextStyle(fontSize: 18),
style: scaledTextStyle(fontSize: 17),
),
),
bottomNavigationBar: const GeckoBottomAppBar(),
......
......@@ -45,7 +45,7 @@ class CertificationsScreen extends StatelessWidget {
header: Row(children: [
Text(
'received'.tr(),
style: scaledTextStyle(fontSize: 17),
style: scaledTextStyle(fontSize: 16),
),
ScaledSizedBox(width: 5),
CertsCounter(address: address)
......@@ -64,7 +64,7 @@ class CertificationsScreen extends StatelessWidget {
header: Row(children: [
Text(
'sent'.tr(),
style: scaledTextStyle(fontSize: 17),
style: scaledTextStyle(fontSize: 16),
),
ScaledSizedBox(width: 5),
CertsCounter(address: address, isSent: true)
......
......@@ -24,14 +24,14 @@ class DebugScreen extends StatelessWidget {
children: [
Text(
'node: ${sub.getConnectedEndpoint()}',
style: TextStyle(fontSize: 15, color: Colors.grey[700]),
style: TextStyle(fontSize: 14, color: Colors.grey[700]),
),
const SizedBox(height: 15),
Text(
'blockN'.tr(args: [
sub.blocNumber.toString()
]), //'bloc N°${sub.blocNumber}',
style: TextStyle(fontSize: 15, color: Colors.grey[700]),
style: TextStyle(fontSize: 14, color: Colors.grey[700]),
),
const SizedBox(height: 20),
SizedBox(
......@@ -47,7 +47,7 @@ class DebugScreen extends StatelessWidget {
child: const Text(
'Spawn a bloc',
style: TextStyle(
fontSize: 17, fontWeight: FontWeight.w600),
fontSize: 16, fontWeight: FontWeight.w600),
),
),
),
......
......@@ -189,7 +189,7 @@ Widget geckHome(context) {
textAlign: TextAlign.center,
style: scaledTextStyle(
color: Colors.white,
fontSize: 19,
fontSize: 18,
fontWeight: FontWeight.w700,
shadows: <Shadow>[
const Shadow(
......@@ -278,7 +278,7 @@ Widget welcomeHome(context) {
textAlign: TextAlign.center,
style: scaledTextStyle(
color: Colors.white,
fontSize: 20,
fontSize: 19,
fontWeight: FontWeight.w700,
shadows: const <Shadow>[
Shadow(
......@@ -356,7 +356,7 @@ Widget welcomeHome(context) {
child: Text(
'createWallet'.tr(),
style: scaledTextStyle(
fontSize: 21,
fontSize: 20,
fontWeight: FontWeight.w600,
color: Colors.white),
),
......@@ -383,7 +383,7 @@ Widget welcomeHome(context) {
child: Text(
"restoreWallet".tr(),
style: scaledTextStyle(
fontSize: 21,
fontSize: 20,
color: orangeC,
fontWeight: FontWeight.w600),
),
......
......@@ -52,7 +52,7 @@ class _ChangePinScreenState extends State<ChangePinScreen> {
'choosePassword'.tr(),
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 17.0,
fontSize: 16.0,
color: Colors.grey[600],
fontWeight: FontWeight.w400),
),
......@@ -67,7 +67,7 @@ class _ChangePinScreenState extends State<ChangePinScreen> {
textAlign: TextAlign.center,
decoration: const InputDecoration(),
style: const TextStyle(
fontSize: 30.0,
fontSize: 29.0,
color: Colors.black,
fontWeight: FontWeight.bold)),
IconButton(
......@@ -102,7 +102,7 @@ class _ChangePinScreenState extends State<ChangePinScreen> {
},
child: Text(
'confirm'.tr(),
style: const TextStyle(fontSize: 28),
style: const TextStyle(fontSize: 27),
),
),
)
......
......@@ -68,7 +68,7 @@ class ChestOptions extends StatelessWidget {
child: Text(
'displayMnemonic'.tr(),
style: scaledTextStyle(
fontSize: 17,
fontSize: 16,
color: orangeC,
),
),
......@@ -113,7 +113,7 @@ class ChestOptions extends StatelessWidget {
Text(
'changePassword'.tr(),
style: scaledTextStyle(
fontSize: 17,
fontSize: 16,
color: sub.nodeConnected
? Colors.grey[500]
: Colors.grey[500]),
......@@ -149,7 +149,7 @@ class ChestOptions extends StatelessWidget {
Text(
'createDerivation'.tr(),
style: scaledTextStyle(
fontSize: 17,
fontSize: 16,
color: sub.nodeConnected
? Colors.black
: Colors.grey[500]),
......@@ -176,7 +176,7 @@ class ChestOptions extends StatelessWidget {
Text(
'deleteChest'.tr(),
style: scaledTextStyle(
fontSize: 17,
fontSize: 16,
color: const Color(0xffD80000),
),
),
......
......@@ -65,7 +65,7 @@ class _ChooseChestState extends State<ChooseChest> {
const SizedBox(height: 30),
Text(
i.value.name!,
style: const TextStyle(fontSize: 21),
style: const TextStyle(fontSize: 20),
),
]);
},
......@@ -119,7 +119,7 @@ class _ChooseChestState extends State<ChooseChest> {
child: Text(
'openThisChest'.tr(),
style: const TextStyle(
fontSize: 22,
fontSize: 21,
color: backgroundColor,
fontWeight: FontWeight.w600),
),
......@@ -145,7 +145,7 @@ class _ChooseChestState extends State<ChooseChest> {
child: Center(
child: Text('createChest'.tr(),
style: const TextStyle(
fontSize: 22,
fontSize: 21,
color: orangeC,
fontWeight: FontWeight.w600))),
),
......@@ -168,7 +168,7 @@ class _ChooseChestState extends State<ChooseChest> {
child: Center(
child: Text('importChest'.tr(),
style: const TextStyle(
fontSize: 22,
fontSize: 21,
color: orangeC,
fontWeight: FontWeight.w600))),
)),
......
......@@ -55,7 +55,7 @@ class _CustomDerivationState extends State<CustomDerivation> {
const Spacer(),
Text(
'chooseDerivation'.tr(),
style: scaledTextStyle(fontSize: 17),
style: scaledTextStyle(fontSize: 16),
),
ScaledSizedBox(height: 20),
ScaledSizedBox(
......@@ -89,7 +89,7 @@ class _CustomDerivationState extends State<CustomDerivation> {
Text(
value,
style: scaledTextStyle(
fontSize: 17, color: Colors.black),
fontSize: 16, color: Colors.black),
),
const Spacer(),
]),
......@@ -127,7 +127,7 @@ class _CustomDerivationState extends State<CustomDerivation> {
child: Text(
'validate'.tr(),
style: scaledTextStyle(
fontSize: 19,
fontSize: 18,
fontWeight: FontWeight.w600,
color: Colors.white),
),
......
......@@ -91,10 +91,10 @@ class ImportG1v1 extends StatelessWidget {
keyboardType: TextInputType.text,
controller: sub.csSalt,
obscureText: !sub.isCesiumIDVisible,
style: scaledTextStyle(fontSize: 14),
style: scaledTextStyle(fontSize: 13),
decoration: InputDecoration(
hintText: 'enterCesiumId'.tr(),
hintStyle: scaledTextStyle(fontSize: 14),
hintStyle: scaledTextStyle(fontSize: 13),
suffixIcon: IconButton(
key: keyCesiumIdVisible,
icon: Icon(
......@@ -133,10 +133,10 @@ class ImportG1v1 extends StatelessWidget {
keyboardType: TextInputType.text,
controller: sub.csPassword,
obscureText: !sub.isCesiumIDVisible,
style: scaledTextStyle(fontSize: 14),
style: scaledTextStyle(fontSize: 13),
decoration: InputDecoration(
hintText: 'enterCesiumPassword'.tr(),
hintStyle: scaledTextStyle(fontSize: 14),
hintStyle: scaledTextStyle(fontSize: 13),
suffixIcon: IconButton(
icon: Icon(
sub.isCesiumIDVisible
......@@ -169,7 +169,7 @@ class ImportG1v1 extends StatelessWidget {
child: Text(
'v1: ${getShortPubkey(sub.g1V1OldPubkey)}',
style: scaledTextStyle(
fontSize: 16,
fontSize: 15,
fontWeight: FontWeight.w600,
fontFamily: 'Monospace'),
),
......@@ -185,7 +185,7 @@ class ImportG1v1 extends StatelessWidget {
child: Text(
'v2: ${getShortPubkey(sub.g1V1NewAddress)}',
style: scaledTextStyle(
fontSize: 16,
fontSize: 15,
fontWeight: FontWeight.w600,
fontFamily: 'Monospace'),
),
......@@ -197,7 +197,7 @@ class ImportG1v1 extends StatelessWidget {
children: [
Text(
'${statusData.fromBalance['transferableBalance']} $unit',
style: scaledTextStyle(fontSize: 16),
style: scaledTextStyle(fontSize: 15),
),
IdentityStatus(
address: sub.g1V1NewAddress,
......@@ -214,7 +214,7 @@ class ImportG1v1 extends StatelessWidget {
ScaledSizedBox(height: 20),
Text(
'migrateToThisWallet'.tr(),
style: scaledTextStyle(fontSize: 16),
style: scaledTextStyle(fontSize: 15),
),
ScaledSizedBox(height: 5),
DropdownButtonHideUnderline(
......@@ -228,7 +228,7 @@ class ImportG1v1 extends StatelessWidget {
value: wallet,
child: Text(
wallet.name!,
style: scaledTextStyle(fontSize: 16),
style: scaledTextStyle(fontSize: 15),
),
);
}).toList(),
......@@ -295,7 +295,7 @@ class ImportG1v1 extends StatelessWidget {
child: Text(
'migrateAccount'.tr(),
style: scaledTextStyle(
fontSize: 19, fontWeight: FontWeight.w600),
fontSize: 18, fontWeight: FontWeight.w600),
),
),
),
......@@ -304,7 +304,7 @@ class ImportG1v1 extends StatelessWidget {
statusData.validationStatus,
textAlign: TextAlign.center,
style: scaledTextStyle(
fontSize: 12, color: Colors.grey[600]),
fontSize: 11, color: Colors.grey[600]),
)
]);
});
......
......@@ -57,12 +57,12 @@ class ManageMembership extends StatelessWidget {
children: [
Text('revokeMyIdentity'.tr(),
style: scaledTextStyle(
fontSize: 18,
fontSize: 17,
color: Colors.grey[500])),
ScaledSizedBox(height: 2),
Text("youCannotRevokeThisIdentity".tr(),
style: scaledTextStyle(
fontSize: 13,
fontSize: 12,
color: Colors.grey[500])),
]),
],
......@@ -92,7 +92,7 @@ class ManageMembership extends StatelessWidget {
ScaledSizedBox(width: 16),
Icon(Icons.change_circle_outlined, size: scaleSize(32)),
ScaledSizedBox(width: 11.5),
Text('Migrer mon identité', style: scaledTextStyle(fontSize: 18)),
Text('Migrer mon identité', style: scaledTextStyle(fontSize: 17)),
]),
),
);
......@@ -138,7 +138,7 @@ class ManageMembership extends StatelessWidget {
height: scaleSize(28),
),
ScaledSizedBox(width: 16),
Text('Révoquer mon adhésion', style: scaledTextStyle(fontSize: 18)),
Text('Révoquer mon adhésion', style: scaledTextStyle(fontSize: 17)),
]),
),
);
......
......@@ -37,7 +37,7 @@ class MigrateIdentityScreen extends StatelessWidget {
final newWalletAddress = TextEditingController();
final mdStyle = MarkdownStyleSheet(
p: scaledTextStyle(fontSize: 16, color: Colors.black, letterSpacing: 0.3),
p: scaledTextStyle(fontSize: 15, color: Colors.black, letterSpacing: 0.3),
textAlign: WrapAlignment.center,
);
final bool isUdUnit = configBox.get('isUdUnit') ?? false;
......@@ -117,7 +117,7 @@ class MigrateIdentityScreen extends StatelessWidget {
),
ScaledSizedBox(height: 55),
Text('migrateToThisWallet'.tr(),
style: scaledTextStyle(fontSize: 16)),
style: scaledTextStyle(fontSize: 15)),
ScaledSizedBox(height: 5),
ScaledSizedBox(
width: 320,
......@@ -126,14 +126,14 @@ class MigrateIdentityScreen extends StatelessWidget {
autofocus: true,
minLines: 2,
maxLines: 2,
style: scaledTextStyle(fontSize: 14),
style: scaledTextStyle(fontSize: 13),
decoration: InputDecoration(
icon: Image.asset(
'assets/onBoarding/phrase_de_restauration_flou.png',
width: scaleSize(30),
),
hintText: 'enterYourNewMnemonic'.tr(),
hintStyle: scaledTextStyle(fontSize: 14),
hintStyle: scaledTextStyle(fontSize: 13),
focusedBorder: const UnderlineInputBorder(
borderSide: BorderSide(color: orangeC),
),
......@@ -148,14 +148,14 @@ class MigrateIdentityScreen extends StatelessWidget {
width: 320,
child: TextField(
controller: newWalletAddress,
style: scaledTextStyle(fontSize: 14),
style: scaledTextStyle(fontSize: 13),
decoration: InputDecoration(
icon: Image.asset(
'assets/walletOptions/key.png',
height: scaleSize(30),
),
hintText: 'enterYourNewAddress'.tr(args: [currencyName]),
hintStyle: scaledTextStyle(fontSize: 14),
hintStyle: scaledTextStyle(fontSize: 13),
focusedBorder: const UnderlineInputBorder(
borderSide: BorderSide(color: orangeC),
),
......@@ -222,7 +222,7 @@ class MigrateIdentityScreen extends StatelessWidget {
child: Text(
'migrateIdentity'.tr(),
style: scaledTextStyle(
fontSize: 19,
fontSize: 18,
fontWeight: FontWeight.w600,
color: Colors.white),
),
......@@ -239,14 +239,14 @@ class MigrateIdentityScreen extends StatelessWidget {
statusData.validationStatus,
textAlign: TextAlign.center,
style:
scaledTextStyle(fontSize: 12, color: Colors.grey[600]),
scaledTextStyle(fontSize: 11, color: Colors.grey[600]),
),
ScaledSizedBox(height: 5),
Text(
matchInfo,
textAlign: TextAlign.center,
style:
scaledTextStyle(fontSize: 12, color: Colors.grey[600]),
scaledTextStyle(fontSize: 11, color: Colors.grey[600]),
),
],
),
......
......@@ -108,7 +108,7 @@ class RestoreChest extends StatelessWidget {
child: Text(
'restoreThisChest'.tr(),
style: scaledTextStyle(
fontSize: 19,
fontSize: 18,
fontWeight: FontWeight.w600,
color: Colors.white),
),
......@@ -143,7 +143,7 @@ class RestoreChest extends StatelessWidget {
'pasteFromClipboard'.tr(),
textAlign: TextAlign.center,
style: scaledTextStyle(
fontSize: 16, fontWeight: FontWeight.w400),
fontSize: 15, fontWeight: FontWeight.w400),
),
],
)),
......@@ -170,7 +170,7 @@ class RestoreChest extends StatelessWidget {
key: keyBubbleSpeak,
textAlign: TextAlign.justify,
style: scaledTextStyle(
color: Colors.black, fontSize: 17, fontWeight: FontWeight.w400),
color: Colors.black, fontSize: 16, fontWeight: FontWeight.w400),
),
);
}
......@@ -212,7 +212,7 @@ class RestoreChest extends StatelessWidget {
}
},
textAlign: TextAlign.center,
style: scaledTextStyle(fontSize: 17),
style: scaledTextStyle(fontSize: 16),
),
);
}
......
......@@ -92,7 +92,7 @@ class ShowSeed extends StatelessWidget {
Text(
'copy'.tr(),
style: scaledTextStyle(
fontSize: 14, color: Colors.grey[50]),
fontSize: 13, color: Colors.grey[50]),
)
]),
),
......@@ -133,7 +133,7 @@ class ShowSeed extends StatelessWidget {
child: Text(
'close'.tr(),
style: scaledTextStyle(
fontSize: 19,
fontSize: 18,
fontWeight: FontWeight.w600,
color: Colors.white),
),
......@@ -188,12 +188,12 @@ class ShowSeed extends StatelessWidget {
child: Column(children: <Widget>[
Text(
nbr.toString(),
style: scaledTextStyle(fontSize: 11, color: const Color(0xff6b6b52)),
style: scaledTextStyle(fontSize: 10, color: const Color(0xff6b6b52)),
),
Text(
dataWord,
key: keyMnemonicWord(dataWord),
style: scaledTextStyle(fontSize: 16, color: Colors.black),
style: scaledTextStyle(fontSize: 15, color: Colors.black),
),
]),
);
......@@ -251,12 +251,12 @@ class PrintWallet extends StatelessWidget {
pw.Text(
number.toString(),
style: pw.TextStyle(
fontSize: 15, color: const PdfColor(0.5, 0, 0), font: ttf),
fontSize: 14, color: const PdfColor(0.5, 0, 0), font: ttf),
),
pw.Text(
dataWord,
style: pw.TextStyle(
fontSize: 20, color: const PdfColor(0, 0, 0), font: ttf),
fontSize: 19, color: const PdfColor(0, 0, 0), font: ttf),
),
pw.SizedBox(height: 10)
]),
......@@ -300,7 +300,7 @@ class PrintWallet extends StatelessWidget {
pw.Text(
"keepThisPaperSafe".tr(),
textAlign: pw.TextAlign.center,
style: pw.TextStyle(fontSize: 15, font: ttf),
style: pw.TextStyle(fontSize: 14, font: ttf),
)
],
)
......
......@@ -97,7 +97,7 @@ class UnlockingWallet extends StatelessWidget {
currentChest.name!,
textAlign: TextAlign.center,
style: scaledTextStyle(
fontSize: 22,
fontSize: 21,
color: Colors.black,
fontWeight: FontWeight.w700),
)),
......@@ -109,7 +109,7 @@ class UnlockingWallet extends StatelessWidget {
'toUnlockEnterPassword'.tr(),
textAlign: TextAlign.center,
style: scaledTextStyle(
fontSize: 16,
fontSize: 15,
color: Colors.black,
fontWeight: FontWeight.w400),
)),
......@@ -121,7 +121,7 @@ class UnlockingWallet extends StatelessWidget {
style: scaledTextStyle(
color: Colors.red,
fontWeight: FontWeight.w500,
fontSize: 16),
fontSize: 15),
),
ScaledSizedBox(height: isTall ? 8 : 0),
pinForm(context, pinLenght),
......@@ -148,7 +148,7 @@ class UnlockingWallet extends StatelessWidget {
Text(
'rememberPassword'.tr(),
style: scaledTextStyle(
fontSize: 15, color: Colors.grey[700]),
fontSize: 14, color: Colors.grey[700]),
),
const Spacer()
]),
......@@ -173,7 +173,7 @@ class UnlockingWallet extends StatelessWidget {
// child: Text(
// 'changeChest'.tr(),
// style: const scaledTextStyle(
// fontSize: 22,
// fontSize: 21,
// color: Colors.grey, // orangeC
// fontWeight: FontWeight.w600),
// ),
......@@ -240,7 +240,7 @@ class UnlockingWallet extends StatelessWidget {
),
showCursor: !kDebugMode,
cursorColor: Colors.black,
textStyle: scaledTextStyle(fontSize: 25, height: 1.6),
textStyle: scaledTextStyle(fontSize: 24, height: 1.6),
backgroundColor: const Color(0xffF9F9F1),
enableActiveFill: false,
controller: enterPin,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment