mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-03-12 09:32:33 +00:00
Fix Popup background color in add balance screen
Fix Add icon color
This commit is contained in:
parent
71e851ab71
commit
eed908e6da
3 changed files with 9 additions and 9 deletions
|
@ -179,6 +179,7 @@ class AddBalancePage extends BasePage {
|
|||
alertTitleColor: Theme.of(context).primaryTextTheme.title.decorationColor,
|
||||
alertContent: S.of(context).confirm_delete_template,
|
||||
contentWidget: Material(
|
||||
color: Colors.transparent,
|
||||
child: Column(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
children: [
|
||||
|
@ -296,6 +297,7 @@ class AddBalancePage extends BasePage {
|
|||
alertContent: Padding(
|
||||
padding: const EdgeInsets.only(top: 8, bottom: 32),
|
||||
child: Material(
|
||||
color: Colors.transparent,
|
||||
child: Column(
|
||||
children: [
|
||||
Padding(
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
import 'package:cake_wallet/palette.dart';
|
||||
import 'package:cake_wallet/src/widgets/base_text_form_field.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter/cupertino.dart';
|
||||
|
@ -95,7 +96,7 @@ class CakePhoneAuthBodyState extends State<CakePhoneAuthBody> {
|
|||
TextSpan(
|
||||
text: " ${S.of(context).settings_terms_and_conditions}",
|
||||
style: TextStyle(
|
||||
color: Theme.of(context).accentTextTheme.display1.color,
|
||||
color: Palette.blueCraiola,
|
||||
fontWeight: FontWeight.w600,
|
||||
),
|
||||
),
|
||||
|
@ -105,7 +106,7 @@ class CakePhoneAuthBodyState extends State<CakePhoneAuthBody> {
|
|||
TextSpan(
|
||||
text: "${S.of(context).privacy_policy} ",
|
||||
style: TextStyle(
|
||||
color: Theme.of(context).accentTextTheme.display1.color,
|
||||
color: Palette.blueCraiola,
|
||||
fontWeight: FontWeight.w600,
|
||||
),
|
||||
),
|
||||
|
|
|
@ -27,13 +27,10 @@ class AddOptionsTile extends StatelessWidget {
|
|||
color: Theme.of(context).primaryTextTheme.title.color,
|
||||
),
|
||||
const SizedBox(width: 16),
|
||||
Container(
|
||||
padding: const EdgeInsets.all(4),
|
||||
decoration: BoxDecoration(
|
||||
shape: BoxShape.circle,
|
||||
color: Theme.of(context).primaryTextTheme.title.color,
|
||||
),
|
||||
child: Icon(Icons.add, color: Colors.white, size: 15),
|
||||
Icon(
|
||||
Icons.add_circle,
|
||||
color: Theme.of(context).primaryTextTheme.title.color,
|
||||
size: 24,
|
||||
),
|
||||
],
|
||||
),
|
||||
|
|
Loading…
Reference in a new issue