报修 房间选择

This commit is contained in:
czz
2025-07-21 16:50:57 +08:00
parent 32ce75d65f
commit 210617c6ff
17 changed files with 507 additions and 912 deletions

View File

@@ -920,7 +920,7 @@ Future<void> showTipDialog(
BuildContext context,
Widget widget, {
Color? backgroundColor,
Co
List<Color>? colors,
}) {
ThemeController themeController = Get.find();
// BlueteethBindController blueteethBindController = Get.find();
@@ -961,10 +961,11 @@ Future<void> showTipDialog(
onTap: () {
Get.back(); // 关闭对话框
},
colors: [
themeController.currentColor.sc1,
themeController.currentColor.sc2,
],
colors: colors ??
[
themeController.currentColor.sc1,
themeController.currentColor.sc2,
],
child: Container(
width: MediaQuery.sizeOf(context).width,
height: MediaQuery.sizeOf(context).height * 0.055,
@@ -999,9 +1000,6 @@ Future<void> showTipDialog(
);
}
Future<void> showUnBindTipDialog(
BuildContext context,
Widget widget, {