Merged vinayak's code
This commit is contained in:
@@ -311,7 +311,6 @@ class EsimOfferPage extends StatelessWidget {
|
||||
),
|
||||
],
|
||||
),
|
||||
SizedBox(height: 150.h,)
|
||||
],
|
||||
),
|
||||
),
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:google_fonts/google_fonts.dart';
|
||||
|
||||
import '../../core/route_constants.dart';
|
||||
|
||||
class ESimOfferSection extends StatelessWidget {
|
||||
const ESimOfferSection({super.key});
|
||||
|
||||
@@ -116,16 +118,22 @@ class ESimOfferSection extends StatelessWidget {
|
||||
fontWeight: FontWeight.w600,
|
||||
),
|
||||
),
|
||||
Container(
|
||||
decoration: const BoxDecoration(
|
||||
color: Colors.white,
|
||||
shape: BoxShape.circle,
|
||||
),
|
||||
padding: const EdgeInsets.all(12),
|
||||
child: Image.asset(
|
||||
"assets/icons/arrow_angle_up.png",
|
||||
color: Color(0xFFF95F62),
|
||||
scale: 4,
|
||||
InkWell(
|
||||
onTap: (){
|
||||
Navigator.of(context, rootNavigator: true)
|
||||
.pushNamed(RouteConstants.esimOffer);
|
||||
},
|
||||
child: Container(
|
||||
decoration: const BoxDecoration(
|
||||
color: Colors.white,
|
||||
shape: BoxShape.circle,
|
||||
),
|
||||
padding: const EdgeInsets.all(12),
|
||||
child: Image.asset(
|
||||
"assets/icons/arrow_angle_up.png",
|
||||
color: Color(0xFFF95F62),
|
||||
scale: 4,
|
||||
),
|
||||
),
|
||||
)
|
||||
],
|
||||
|
||||
@@ -2,6 +2,8 @@ import 'package:flutter/material.dart';
|
||||
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
||||
import 'package:google_fonts/google_fonts.dart';
|
||||
|
||||
import '../../core/route_constants.dart';
|
||||
|
||||
class HotelOffersSection extends StatelessWidget {
|
||||
const HotelOffersSection({super.key});
|
||||
|
||||
@@ -140,16 +142,22 @@ class HotelOffersSection extends StatelessWidget {
|
||||
fontWeight: FontWeight.w600,
|
||||
),
|
||||
),
|
||||
Container(
|
||||
decoration: const BoxDecoration(
|
||||
color: Colors.white,
|
||||
shape: BoxShape.circle,
|
||||
),
|
||||
padding: const EdgeInsets.all(12),
|
||||
child: Image.asset(
|
||||
"assets/icons/arrow_angle_up.png",
|
||||
color: Color(0xFFF95F62),
|
||||
scale: 4,
|
||||
InkWell(
|
||||
onTap: (){
|
||||
Navigator.of(context, rootNavigator: true)
|
||||
.pushNamed(RouteConstants.hotelOffer);
|
||||
},
|
||||
child: Container(
|
||||
decoration: const BoxDecoration(
|
||||
color: Colors.white,
|
||||
shape: BoxShape.circle,
|
||||
),
|
||||
padding: const EdgeInsets.all(12),
|
||||
child: Image.asset(
|
||||
"assets/icons/arrow_angle_up.png",
|
||||
color: Color(0xFFF95F62),
|
||||
scale: 4,
|
||||
),
|
||||
),
|
||||
)
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user