Skip to content
Snippets Groups Projects
Commit 09c869e6 authored by poka's avatar poka
Browse files

increase font size on wallets views

parent 33635d92
No related branches found
No related tags found
No related merge requests found
Pipeline #19060 waiting for manual action
......@@ -217,5 +217,6 @@
"youHaveToBeConnectedToValidateChest": "You have to be connected\nto validate your chest",
"thisIdentityAlreadyExist": "This identity already exists",
"removedFromcontacts": "Removed from contacts",
"addedToContacts": "Added to contacts"
"addedToContacts": "Added to contacts",
"certificationsOf": "Certifications of {}"
}
\ No newline at end of file
......@@ -218,5 +218,6 @@
"youHaveToBeConnectedToValidateChest": "Tienes que tener conneción\npara validar tu cofre",
"thisIdentityAlreadyExist": "Esta identidad ya existe",
"removedFromcontacts": "Removed from contacts",
"addedToContacts": "Added to contacts"
"addedToContacts": "Added to contacts",
"certificationsOf": "Certifications of {}"
}
\ No newline at end of file
......@@ -217,5 +217,6 @@
"youHaveToBeConnectedToValidateChest": "Vous devez vous connecter à internet\npour valider votre coffre",
"thisIdentityAlreadyExist": "Cette identité existe déjà",
"removedFromcontacts": "Retiré des contact",
"addedToContacts": "Ajouté au contacts"
"addedToContacts": "Ajouté au contacts",
"certificationsOf": "Certifications de {}"
}
\ No newline at end of file
......@@ -23,7 +23,7 @@ class CertificationsScreen extends StatelessWidget {
toolbarHeight: 60 * ratio,
title: SizedBox(
height: 22,
child: Text('Certifications de $username'),
child: Text('certificationsOf'.tr(args: [username])),
)),
body: SafeArea(
child: Accordion(
......@@ -45,7 +45,10 @@ class CertificationsScreen extends StatelessWidget {
headerBackgroundColor: yellowC,
headerBackgroundColorOpened: orangeC,
header: Row(children: [
Text('received'.tr()),
Text(
'received'.tr(),
style: const TextStyle(fontSize: 20),
),
const SizedBox(width: 5),
CertsCounter(address: address)
]),
......@@ -60,7 +63,10 @@ class CertificationsScreen extends StatelessWidget {
headerBackgroundColor: yellowC,
headerBackgroundColorOpened: orangeC,
header: Row(children: [
Text('sent'.tr()),
Text(
'sent'.tr(),
style: const TextStyle(fontSize: 20),
),
const SizedBox(width: 5),
CertsCounter(address: address, isSent: true)
]),
......
......@@ -146,7 +146,7 @@ class WalletOptions extends StatelessWidget {
builder: (context, walletProvider, _) {
return NameByAddress(
wallet: wallet,
size: 27,
size: 29,
color: Colors.black,
fontWeight: wallet.isMember
? FontWeight.w500
......@@ -183,7 +183,7 @@ class WalletOptions extends StatelessWidget {
]),
SizedBox(height: isTall ? 5 : 0),
Balance(
address: walletProvider.address.text, size: 21),
address: walletProvider.address.text, size: 24),
const SizedBox(width: 30),
InkWell(
onTap: () => isWalletNameIndexed
......
......@@ -37,12 +37,12 @@ class CertTile extends StatelessWidget {
title: Padding(
padding: const EdgeInsets.only(bottom: 5),
child: Text(repository['name'],
style: const TextStyle(fontSize: 20)),
style: const TextStyle(fontSize: 22)),
),
subtitle: RichText(
text: TextSpan(
style: TextStyle(
fontSize: 16,
fontSize: 18,
color: Colors.grey[700],
),
children: <TextSpan>[
......@@ -62,6 +62,7 @@ class CertTile extends StatelessWidget {
style: TextStyle(
fontStyle: FontStyle.italic,
color: Colors.grey[600],
fontSize: 18
),
),
],
......
......@@ -74,9 +74,9 @@ class HeaderProfile extends StatelessWidget {
),
),
]),
const SizedBox(height: 25),
Balance(address: address, size: 22),
const SizedBox(height: 10),
const SizedBox(height: 23),
Balance(address: address, size: 25),
const SizedBox(height: 9),
InkWell(
onTap: () => duniterIndexer.walletNameIndexer[address] != null
? {
......
......@@ -54,7 +54,7 @@ class IdentityStatus extends StatelessWidget {
? showText('memberValidated'.tr(), 18, true)
: NameByAddress(
wallet: WalletData(address: address),
size: 20,
size: 24,
color: Colors.black,
fontWeight: FontWeight.w600,
fontStyle: FontStyle.normal);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment