mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-11-28 00:24:54 +00:00
fix last testing bugs
This commit is contained in:
@ -17,7 +17,9 @@ import 'package:syncrow_app/utils/resource_manager/color_manager.dart';
|
||||
class CustomBottomSheetWidget extends StatelessWidget {
|
||||
const CustomBottomSheetWidget({
|
||||
super.key,
|
||||
required this.sceneId,
|
||||
});
|
||||
final String sceneId;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
@ -68,7 +70,8 @@ class CustomBottomSheetWidget extends StatelessWidget {
|
||||
color: ColorsManager.greyColor,
|
||||
),
|
||||
onPressed: () {
|
||||
Navigator.pushNamed(context, Routes.smartAutomationSelectRoute);
|
||||
Navigator.pushNamed(context, Routes.smartAutomationSelectRoute,
|
||||
arguments: sceneId);
|
||||
},
|
||||
),
|
||||
SceneListTile(
|
||||
|
||||
Reference in New Issue
Block a user