Updated bottomsheet bg color
This commit is contained in:
@@ -345,6 +345,7 @@ class CheckoutView extends StatelessWidget {
|
|||||||
CustomFilledButton(
|
CustomFilledButton(
|
||||||
onTap: () {
|
onTap: () {
|
||||||
showModalBottomSheet(
|
showModalBottomSheet(
|
||||||
|
backgroundColor: Colors.white,
|
||||||
context: context,
|
context: context,
|
||||||
isScrollControlled: true,
|
isScrollControlled: true,
|
||||||
shape: RoundedRectangleBorder(
|
shape: RoundedRectangleBorder(
|
||||||
|
|||||||
@@ -71,7 +71,9 @@ class AllCouponsBottomsheet extends StatelessWidget {
|
|||||||
GestureDetector(
|
GestureDetector(
|
||||||
onTap: (){
|
onTap: (){
|
||||||
Navigator.pop(context);
|
Navigator.pop(context);
|
||||||
showModalBottomSheet(context: context,
|
showModalBottomSheet(
|
||||||
|
backgroundColor: Colors.white,
|
||||||
|
context: context,
|
||||||
isScrollControlled: true,
|
isScrollControlled: true,
|
||||||
shape: RoundedRectangleBorder(
|
shape: RoundedRectangleBorder(
|
||||||
borderRadius: BorderRadius.vertical(
|
borderRadius: BorderRadius.vertical(
|
||||||
|
|||||||
@@ -62,6 +62,7 @@ class LoginEmailBottomsheet extends StatelessWidget {
|
|||||||
Navigator.pop(context);
|
Navigator.pop(context);
|
||||||
showModalBottomSheet(
|
showModalBottomSheet(
|
||||||
context: context,
|
context: context,
|
||||||
|
backgroundColor: Colors.white,
|
||||||
isScrollControlled: true,
|
isScrollControlled: true,
|
||||||
shape: RoundedRectangleBorder(
|
shape: RoundedRectangleBorder(
|
||||||
borderRadius: BorderRadius.vertical(
|
borderRadius: BorderRadius.vertical(
|
||||||
|
|||||||
@@ -200,7 +200,9 @@ class PurchaseDetailsBottomsheet extends StatelessWidget {
|
|||||||
|
|
||||||
// --- Proceed Button ---
|
// --- Proceed Button ---
|
||||||
CustomFilledButton(
|
CustomFilledButton(
|
||||||
onTap: () {},
|
onTap: () {
|
||||||
|
Navigator.pop(context);
|
||||||
|
},
|
||||||
label: "Proceed",
|
label: "Proceed",
|
||||||
width: double.infinity,
|
width: double.infinity,
|
||||||
),
|
),
|
||||||
|
|||||||
@@ -76,7 +76,9 @@ class VerifyOtpBottomsheet extends StatelessWidget {
|
|||||||
|
|
||||||
SizedBox(height: 42.h),
|
SizedBox(height: 42.h),
|
||||||
CustomFilledButton(
|
CustomFilledButton(
|
||||||
onTap: () {},
|
onTap: () {
|
||||||
|
Navigator.pop(context);
|
||||||
|
},
|
||||||
label: "Continue",
|
label: "Continue",
|
||||||
width: double.infinity,
|
width: double.infinity,
|
||||||
),
|
),
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
import 'package:citycards_customer/cart/blocs/postcard_bloc.dart';
|
import 'package:citycards_customer/cart/blocs/postcard_bloc.dart';
|
||||||
|
import 'package:citycards_customer/core/route_constants.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter/services.dart';
|
import 'package:flutter/services.dart';
|
||||||
import 'package:flutter_bloc/flutter_bloc.dart';
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
||||||
@@ -39,6 +40,7 @@ class MyApp extends StatelessWidget {
|
|||||||
],
|
],
|
||||||
child: MaterialApp(
|
child: MaterialApp(
|
||||||
onGenerateRoute: _appRouter.onGenerateRoute,
|
onGenerateRoute: _appRouter.onGenerateRoute,
|
||||||
|
initialRoute: RouteConstants.buyPass,
|
||||||
debugShowCheckedModeBanner: false,
|
debugShowCheckedModeBanner: false,
|
||||||
title: 'City Cards',
|
title: 'City Cards',
|
||||||
theme: ThemeData(
|
theme: ThemeData(
|
||||||
|
|||||||
Reference in New Issue
Block a user