Browse Source

safety

master
fmk 3 years ago
parent
commit
ef30c85fe9
  1. 1
      lib/store/store_order.dart
  2. 5
      lib/store/store_view/settlement.dart
  3. 5
      lib/store/store_view/shop_car.dart

1
lib/store/store_order.dart

@ -188,6 +188,7 @@ class _StoreOrderPage extends State<StoreOrderPage>
snap: false, snap: false,
pinned: true, pinned: true,
stretch: false, stretch: false,
brightness: Brightness.light,
leading: GestureDetector( leading: GestureDetector(
onTap: () { onTap: () {
Navigator.of(context).pop(); Navigator.of(context).pop();

5
lib/store/store_view/settlement.dart

@ -97,6 +97,7 @@ class _Settlement extends State<Settlement> {
leadingColor: Colors.white, leadingColor: Colors.white,
title:S.of(context).dingdanjiesuan, title:S.of(context).dingdanjiesuan,
titleColor: Colors.white, titleColor: Colors.white,
brightness: Brightness.dark,
titleSize: 18.sp, titleSize: 18.sp,
), ),
body: Container( body: Container(
@ -105,7 +106,9 @@ class _Settlement extends State<Settlement> {
child: Container( child: Container(
child: Column( child: Column(
children: [ children: [
distributionMode(), distributionMode(),
SizedBox(height: 14,), SizedBox(height: 14,),
/// ///
@ -118,8 +121,6 @@ class _Settlement extends State<Settlement> {
payMethod(), payMethod(),
], ],
), ),
), ),

5
lib/store/store_view/shop_car.dart

@ -32,9 +32,8 @@ class _ShopCar extends State<ShopCar> {
height: MediaQuery.of(context).size.height / 2, height: MediaQuery.of(context).size.height / 2,
decoration: BoxDecoration( decoration: BoxDecoration(
color: Colors.white, color: Colors.white,
borderRadius: BorderRadius.only( borderRadius: BorderRadius.vertical(
topLeft: Radius.circular(8), top: Radius.circular(8),
topRight: Radius.circular(8),
), ),
), ),
child: Column( child: Column(

Loading…
Cancel
Save