Add new phone number tile action

This commit is contained in:
OmarHatem28 2022-07-06 16:31:21 +02:00
parent 7cb6e1b193
commit 9bf4e3a20e

View file

@ -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),