|
@@ -127,7 +127,7 @@ class CleanOrderDetailPage extends HookConsumerWidget {
|
|
|
color: context.appColors.whiteBG,
|
|
|
width: double.infinity,
|
|
|
margin: const EdgeInsets.only(left: 0, right: 0, top: 5, bottom: 0),
|
|
|
- padding: const EdgeInsets.only(left: 10, right: 10, top: 18.5, bottom: 0),
|
|
|
+ padding: const EdgeInsets.only(left: 10, right: 10, top: 18.5, bottom: 18.5),
|
|
|
child: _buildOrderScore(state, vm, context),
|
|
|
),
|
|
|
// profile信息
|
|
@@ -135,7 +135,7 @@ class CleanOrderDetailPage extends HookConsumerWidget {
|
|
|
color: context.appColors.whiteBG,
|
|
|
width: double.infinity,
|
|
|
margin: const EdgeInsets.only(left: 0, right: 0, top: 5, bottom: 0),
|
|
|
- padding: const EdgeInsets.only(left: 10, right: 10, top: 18.5, bottom: 0),
|
|
|
+ padding: const EdgeInsets.only(left: 10, right: 10, top: 18.5, bottom: 18.5),
|
|
|
child: _buildOrderProfile(state, vm, context),
|
|
|
),
|
|
|
// 订单 服务项目
|
|
@@ -258,7 +258,7 @@ class CleanOrderDetailPage extends HookConsumerWidget {
|
|
|
children: [
|
|
|
Row(
|
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
|
- crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
+ crossAxisAlignment: CrossAxisAlignment.center,
|
|
|
children: [
|
|
|
const MyAssetImage(
|
|
|
Assets.serviceLocationIcon,
|
|
@@ -269,6 +269,7 @@ class CleanOrderDetailPage extends HookConsumerWidget {
|
|
|
width: 10,
|
|
|
),
|
|
|
Column(
|
|
|
+ mainAxisAlignment: MainAxisAlignment.start,
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
children: [
|
|
|
MyTextView(
|
|
@@ -309,7 +310,7 @@ class CleanOrderDetailPage extends HookConsumerWidget {
|
|
|
children: [
|
|
|
Row(
|
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
|
- crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
+ crossAxisAlignment: CrossAxisAlignment.center,
|
|
|
children: [
|
|
|
const MyAssetImage(
|
|
|
Assets.serviceServiceAvatorIcon,
|
|
@@ -362,12 +363,13 @@ class CleanOrderDetailPage extends HookConsumerWidget {
|
|
|
return Container(
|
|
|
padding: const EdgeInsets.only(left: 10, right: 10, top: 10, bottom: 10),
|
|
|
margin: const EdgeInsets.only(left: 15, right: 15, top: 0, bottom: 0),
|
|
|
- color: ColorUtils.string2Color('#F8F8F8'),
|
|
|
+ color: DarkThemeUtil.multiColors(context, ColorUtils.string2Color('#F8F8F8'), darkColor: Colors.grey.withOpacity(0.1)),
|
|
|
child: Column(
|
|
|
children: [
|
|
|
Row(
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
mainAxisSize: MainAxisSize.max,
|
|
|
+ crossAxisAlignment: CrossAxisAlignment.center,
|
|
|
children: [
|
|
|
Expanded(
|
|
|
child: Column(
|
|
@@ -425,7 +427,7 @@ class CleanOrderDetailPage extends HookConsumerWidget {
|
|
|
|
|
|
Widget _buildOrderTotalAmount(CleanOrderDetailState state, CleanOrderDetailVm vm, BuildContext context) {
|
|
|
return Column(children: [
|
|
|
- Row(mainAxisAlignment: MainAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start, children: [
|
|
|
+ Row(mainAxisAlignment: MainAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.center, children: [
|
|
|
const MyAssetImage(
|
|
|
Assets.serviceMoneyIcon,
|
|
|
width: 15,
|
|
@@ -564,7 +566,7 @@ class CleanOrderDetailPage extends HookConsumerWidget {
|
|
|
children: [
|
|
|
Row(
|
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
|
- crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
+ crossAxisAlignment: CrossAxisAlignment.center,
|
|
|
children: [
|
|
|
// const MyAssetImage(
|
|
|
// Assets.assetsYyHomeLogo,
|
|
@@ -588,7 +590,7 @@ class CleanOrderDetailPage extends HookConsumerWidget {
|
|
|
width: double.infinity,
|
|
|
padding: const EdgeInsets.all(15),
|
|
|
decoration: BoxDecoration(
|
|
|
- color: ColorUtils.string2Color("#F8F8F8"),
|
|
|
+ color: DarkThemeUtil.multiColors(context, ColorUtils.string2Color("#F8F8F8"), darkColor: Colors.grey.withOpacity(0.1)),
|
|
|
borderRadius: BorderRadius.circular(5),
|
|
|
// boxShadow: [
|
|
|
// BoxShadow(
|