diff --git a/lib/pages/routines/bloc/routine_bloc/routine_bloc.dart b/lib/pages/routines/bloc/routine_bloc/routine_bloc.dart index d60f8d64..760702d4 100644 --- a/lib/pages/routines/bloc/routine_bloc/routine_bloc.dart +++ b/lib/pages/routines/bloc/routine_bloc/routine_bloc.dart @@ -536,7 +536,7 @@ class RoutineBloc extends Bloc { // 'entityId': 'tab_to_run', // 'uniqueCustomId': const Uuid().v4(), // 'deviceId': 'tab_to_run', - // 'title': 'Tab to run', + // 'title': 'Tap to run', // 'productType': 'tab_to_run', // 'imagePath': Assets.tabToRun, // } @@ -771,7 +771,7 @@ class RoutineBloc extends Bloc { 'entityId': 'tab_to_run', 'uniqueCustomId': const Uuid().v4(), 'deviceId': 'tab_to_run', - 'title': 'Tab to run', + 'title': 'Tap to run', 'productType': 'tab_to_run', 'imagePath': Assets.tabToRun, } diff --git a/lib/pages/routines/helper/save_routine_helper.dart b/lib/pages/routines/helper/save_routine_helper.dart index 23920ba6..e2066374 100644 --- a/lib/pages/routines/helper/save_routine_helper.dart +++ b/lib/pages/routines/helper/save_routine_helper.dart @@ -162,7 +162,7 @@ class SaveRoutineHelper { width: 24, height: 24, ), - title: const Text('Tab to run'), + title: const Text('Tap to run'), ), if (state.isAutomation) ...state.ifItems.map((item) { diff --git a/lib/pages/routines/widgets/conditions_routines_devices_view.dart b/lib/pages/routines/widgets/conditions_routines_devices_view.dart index 3def44de..4088cdf7 100644 --- a/lib/pages/routines/widgets/conditions_routines_devices_view.dart +++ b/lib/pages/routines/widgets/conditions_routines_devices_view.dart @@ -29,11 +29,11 @@ class ConditionsRoutinesDevicesView extends StatelessWidget { children: [ DraggableCard( imagePath: Assets.tabToRun, - title: 'Tab to run', + title: 'Tap to run', deviceData: { 'deviceId': 'tab_to_run', 'type': 'trigger', - 'name': 'Tab to run', + 'name': 'Tap to run', }, ), DraggableCard( diff --git a/lib/pages/routines/widgets/if_container.dart b/lib/pages/routines/widgets/if_container.dart index 884c8d10..0e2f8866 100644 --- a/lib/pages/routines/widgets/if_container.dart +++ b/lib/pages/routines/widgets/if_container.dart @@ -43,7 +43,7 @@ class IfContainer extends StatelessWidget { children: [ DraggableCard( imagePath: Assets.tabToRun, - title: 'Tab to run', + title: 'Tap to run', deviceData: {}, ), ], diff --git a/lib/pages/routines/widgets/main_routine_view/fetch_routine_scenes_automation.dart b/lib/pages/routines/widgets/main_routine_view/fetch_routine_scenes_automation.dart index a67caef9..f9c20c54 100644 --- a/lib/pages/routines/widgets/main_routine_view/fetch_routine_scenes_automation.dart +++ b/lib/pages/routines/widgets/main_routine_view/fetch_routine_scenes_automation.dart @@ -26,7 +26,7 @@ class FetchRoutineScenesAutomation extends StatelessWidget crossAxisAlignment: CrossAxisAlignment.start, mainAxisSize: MainAxisSize.min, children: [ - _buildListTitle(context, "Scenes (Tab to Run)"), + _buildListTitle(context, "Scenes (Tap to Run)"), const SizedBox(height: 10), Visibility( visible: state.scenes.isNotEmpty,