mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 03:59:23 +00:00
fix text on invoice popup
This commit is contained in:
parent
6aec8e8122
commit
7e93af51b0
1 changed files with 12 additions and 8 deletions
|
@ -189,7 +189,7 @@ class LightningInvoicePage extends BasePage {
|
|||
return Expanded(
|
||||
child: Text(
|
||||
finalText,
|
||||
maxLines: 4,
|
||||
maxLines: 5,
|
||||
style: TextStyle(
|
||||
fontSize: 14,
|
||||
fontWeight: FontWeight.w500,
|
||||
|
@ -306,13 +306,17 @@ class LightningInvoicePage extends BasePage {
|
|||
),
|
||||
),
|
||||
Expanded(
|
||||
child: Text(
|
||||
S.of(context).lightning_invoice_warning,
|
||||
maxLines: 5,
|
||||
style: TextStyle(
|
||||
fontSize: 11,
|
||||
fontWeight: FontWeight.w500,
|
||||
color: Theme.of(context).extension<DashboardPageTheme>()!.textColor,
|
||||
child: Material(
|
||||
color: Colors.transparent,
|
||||
child: Text(
|
||||
S.of(context).lightning_invoice_warning,
|
||||
maxLines: 5,
|
||||
style: TextStyle(
|
||||
fontSize: 12,
|
||||
fontWeight: FontWeight.w500,
|
||||
color:
|
||||
Theme.of(context).extension<DashboardPageTheme>()!.textColor,
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
|
|
Loading…
Reference in a new issue