Skip to content
Snippets Groups Projects
Commit 0767522f authored by poka's avatar poka
Browse files

descrease font weight for addresses

parent 646be5de
No related branches found
No related tags found
No related merge requests found
Pipeline #39433 waiting for manual action
...@@ -14,7 +14,7 @@ import 'package:truncate/truncate.dart'; ...@@ -14,7 +14,7 @@ import 'package:truncate/truncate.dart';
class NameByAddress extends StatelessWidget { class NameByAddress extends StatelessWidget {
const NameByAddress( const NameByAddress(
{super.key, required this.wallet, this.size = 20, this.color = Colors.black, this.fontWeight = FontWeight.w400, this.fontStyle = FontStyle.italic}); {super.key, required this.wallet, this.size = 20, this.color = Colors.black, this.fontWeight = FontWeight.w400, this.fontStyle = FontStyle.normal});
final WalletData wallet; final WalletData wallet;
final Color color; final Color color;
final double size; final double size;
......
...@@ -264,7 +264,7 @@ class _WalletHeaderState extends State<WalletHeader> { ...@@ -264,7 +264,7 @@ class _WalletHeaderState extends State<WalletHeader> {
style: scaledTextStyle( style: scaledTextStyle(
fontSize: 20, fontSize: 20,
fontFamily: 'Monospace', fontFamily: 'Monospace',
fontWeight: FontWeight.w900, fontWeight: FontWeight.w600,
), ),
), ),
SizedBox(width: scaleSize(14)), SizedBox(width: scaleSize(14)),
......
...@@ -19,7 +19,6 @@ class WalletName extends StatelessWidget { ...@@ -19,7 +19,6 @@ class WalletName extends StatelessWidget {
fontSize: size, fontSize: size,
color: color, color: color,
fontWeight: FontWeight.w400, fontWeight: FontWeight.w400,
fontStyle: FontStyle.italic,
), ),
softWrap: false, softWrap: false,
overflow: TextOverflow.ellipsis, overflow: TextOverflow.ellipsis,
......
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