pull/1/head
戴余标 3 years ago
parent cae0380d42
commit e996c93858

@ -1,4 +1,4 @@
{
"flutterSdkVersion": "2.8.1",
"flutterSdkVersion": "3.0.0",
"flavors": {}
}

@ -323,6 +323,9 @@ class _Pay {
///
String get livingExpensesOrderCheckAlipay =>
'/app/user/alipay/livingExpensesOrderCheckAlipay';
String get settlement =>
'/app/user/shop/cart/settlement';
}
class _LifePay {

@ -4,6 +4,7 @@
// ignore_for_file: directives_ordering
// ignore_for_file: lines_longer_than_80_chars
// ignore_for_file: depend_on_referenced_packages
import 'package:audio_session/audio_session_web.dart';
import 'package:device_info_plus_web/device_info_plus_web.dart';

@ -190,57 +190,51 @@ class _SubmitOrderPageState extends State<SubmitOrderPage> {
),
_addressModel != null
? Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Padding(
padding: EdgeInsets.symmetric(
horizontal: 20.w, vertical: 6.w),
child: SizedBox(
width: 518.w,
child: Text(
_addressModel!.locationName ?? '',
style: TextStyle(
fontSize: 24.sp, color: ktextPrimary),
maxLines: 1,
overflow: TextOverflow.ellipsis,
),
),
),
Padding(
padding: EdgeInsets.symmetric(
horizontal: 20.w, vertical: 6.w),
child: SizedBox(
width: 518.w,
child: Text(
(_addressModel!.addressDetail ?? ''),
style: TextStyle(
fontSize: 32.sp, color: ktextPrimary),
maxLines: 1,
overflow: TextOverflow.ellipsis,
),
),
Padding(
padding: EdgeInsets.symmetric(
horizontal: 20.w, vertical: 6.w),
child: SizedBox(
width: 518.w,
child: Text(
_addressModel!.locationName ?? '',
style: TextStyle(
fontSize: 24.sp, color: ktextPrimary),
maxLines: 1,
overflow: TextOverflow.ellipsis,
),
Padding(
padding: EdgeInsets.symmetric(
horizontal: 20.w, vertical: 6.w),
child: Row(
crossAxisAlignment: CrossAxisAlignment.end,
children: <Widget>[
Text(_addressModel!.name ?? '',
style: TextStyle(
fontSize: 24.sp,
color: ktextPrimary)),
30.wb,
Text(_addressModel!.tel ?? '',
style: TextStyle(
fontSize: 24.sp,
color: ktextPrimary)),
],
),
),
),
Padding(
padding: EdgeInsets.symmetric(
horizontal: 20.w, vertical: 6.w),
child: SizedBox(
width: 518.w,
child: Text(
(_addressModel!.addressDetail ?? ''),
style: TextStyle(
fontSize: 32.sp, color: ktextPrimary),
maxLines: 1,
overflow: TextOverflow.ellipsis,
),
],
),
),
Padding(
padding: EdgeInsets.symmetric(
horizontal: 20.w, vertical: 6.w),
child: Row(
crossAxisAlignment: CrossAxisAlignment.end,
children: <Widget>[
Text(_addressModel!.name ?? '',
style: TextStyle(
fontSize: 24.sp, color: ktextPrimary)),
30.wb,
Text(_addressModel!.tel ?? '',
style: TextStyle(
fontSize: 24.sp, color: ktextPrimary)),
],
),
),
],
)

@ -513,7 +513,6 @@ class _ShopCarPageState extends State<ShopCarPage> {
_controllers[index].text = (num - 1).toString();
}
}
setState(() {});
},
child: Padding(

@ -245,7 +245,7 @@ packages:
name: collection
url: "https://pub.dartlang.org"
source: hosted
version: "1.15.0"
version: "1.16.0"
color:
dependency: transitive
description:
@ -408,7 +408,7 @@ packages:
name: fake_async
url: "https://pub.dartlang.org"
source: hosted
version: "1.2.0"
version: "1.3.0"
ffi:
dependency: transitive
description:
@ -717,7 +717,7 @@ packages:
name: js
url: "https://pub.dartlang.org"
source: hosted
version: "0.6.3"
version: "0.6.4"
json_annotation:
dependency: "direct main"
description:
@ -787,7 +787,7 @@ packages:
name: material_color_utilities
url: "https://pub.dartlang.org"
source: hosted
version: "0.1.3"
version: "0.1.4"
meta:
dependency: transitive
description:
@ -892,7 +892,7 @@ packages:
name: path
url: "https://pub.dartlang.org"
source: hosted
version: "1.8.0"
version: "1.8.1"
path_drawing:
dependency: transitive
description:
@ -1174,7 +1174,7 @@ packages:
name: source_span
url: "https://pub.dartlang.org"
source: hosted
version: "1.8.1"
version: "1.8.2"
sqflite:
dependency: transitive
description:
@ -1237,7 +1237,7 @@ packages:
name: test_api
url: "https://pub.dartlang.org"
source: hosted
version: "0.4.8"
version: "0.4.9"
time:
dependency: transitive
description:
@ -1342,7 +1342,7 @@ packages:
name: vector_math
url: "https://pub.dartlang.org"
source: hosted
version: "2.1.1"
version: "2.1.2"
velocity_x:
dependency: "direct main"
description:
@ -1407,5 +1407,5 @@ packages:
source: hosted
version: "3.1.0"
sdks:
dart: ">=2.15.0 <3.0.0"
dart: ">=2.17.0-0 <3.0.0"
flutter: ">=2.8.0"

Loading…
Cancel
Save