mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-11 05:14:46 +00:00
fix: anonpay pages title and icon colors
This commit is contained in:
parent
69c68b3e30
commit
7847a496ab
2 changed files with 6 additions and 3 deletions
|
@ -44,6 +44,9 @@ class AnonPayInvoicePage extends BasePage {
|
||||||
|
|
||||||
bool effectsInstalled = false;
|
bool effectsInstalled = false;
|
||||||
|
|
||||||
|
@override
|
||||||
|
bool get gradientBackground => true;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
bool get resizeToAvoidBottomInset => false;
|
bool get resizeToAvoidBottomInset => false;
|
||||||
|
|
||||||
|
|
|
@ -33,7 +33,7 @@ class AnonPayReceivePage extends BasePage {
|
||||||
Widget leading(BuildContext context) {
|
Widget leading(BuildContext context) {
|
||||||
final _backButton = Icon(
|
final _backButton = Icon(
|
||||||
Icons.arrow_back_ios,
|
Icons.arrow_back_ios,
|
||||||
color: Theme.of(context).extension<DashboardPageTheme>()!.textColor,
|
color: pageIconColor(context),
|
||||||
size: 16,
|
size: 16,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -60,7 +60,7 @@ class AnonPayReceivePage extends BasePage {
|
||||||
fontSize: 18.0,
|
fontSize: 18.0,
|
||||||
fontWeight: FontWeight.bold,
|
fontWeight: FontWeight.bold,
|
||||||
fontFamily: 'Lato',
|
fontFamily: 'Lato',
|
||||||
color: Theme.of(context).extension<DashboardPageTheme>()!.textColor),
|
color: titleColor(context)),
|
||||||
),
|
),
|
||||||
Text(
|
Text(
|
||||||
invoiceInfo is AnonpayInvoiceInfo
|
invoiceInfo is AnonpayInvoiceInfo
|
||||||
|
@ -91,7 +91,7 @@ class AnonPayReceivePage extends BasePage {
|
||||||
),
|
),
|
||||||
icon: Icon(
|
icon: Icon(
|
||||||
Icons.edit,
|
Icons.edit,
|
||||||
color: Theme.of(context).cardColor,
|
color: pageIconColor(context),
|
||||||
size: 22.0,
|
size: 22.0,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
Loading…
Reference in a new issue