mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 20:19:25 +00:00
Add new phone number tile action
This commit is contained in:
parent
7cb6e1b193
commit
9bf4e3a20e
1 changed files with 23 additions and 18 deletions
|
@ -48,7 +48,11 @@ class ActiveServicesBodyState extends State<ActiveServicesBody> {
|
||||||
child: Column(
|
child: Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: [
|
children: [
|
||||||
Container(
|
GestureDetector(
|
||||||
|
onTap: () {
|
||||||
|
Navigator.pushNamed(context, Routes.cakePhoneProducts);
|
||||||
|
},
|
||||||
|
child: Container(
|
||||||
width: double.infinity,
|
width: double.infinity,
|
||||||
padding: EdgeInsets.symmetric(horizontal: 24, vertical: 16),
|
padding: EdgeInsets.symmetric(horizontal: 24, vertical: 16),
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
|
@ -69,6 +73,7 @@ class ActiveServicesBodyState extends State<ActiveServicesBody> {
|
||||||
fontWeight: FontWeight.w700,
|
fontWeight: FontWeight.w700,
|
||||||
)),
|
)),
|
||||||
),
|
),
|
||||||
|
),
|
||||||
const SizedBox(height: 8),
|
const SizedBox(height: 8),
|
||||||
freeBalanceInfoRow(),
|
freeBalanceInfoRow(),
|
||||||
const SizedBox(height: 24),
|
const SizedBox(height: 24),
|
||||||
|
|
Loading…
Reference in a new issue