mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-11 05:14:46 +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(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Container(
|
||||
GestureDetector(
|
||||
onTap: () {
|
||||
Navigator.pushNamed(context, Routes.cakePhoneProducts);
|
||||
},
|
||||
child: Container(
|
||||
width: double.infinity,
|
||||
padding: EdgeInsets.symmetric(horizontal: 24, vertical: 16),
|
||||
decoration: BoxDecoration(
|
||||
|
@ -69,6 +73,7 @@ class ActiveServicesBodyState extends State<ActiveServicesBody> {
|
|||
fontWeight: FontWeight.w700,
|
||||
)),
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 8),
|
||||
freeBalanceInfoRow(),
|
||||
const SizedBox(height: 24),
|
||||
|
|
Loading…
Reference in a new issue