From ee01a89d212eb8f30c3f8dde8c0c0c26a818d400 Mon Sep 17 00:00:00 2001 From: mohammad Date: Thu, 16 Jan 2025 18:01:23 +0300 Subject: [PATCH] change file name --- lib/features/devices/view/widgets/ACs/ac_timer_page.dart | 2 +- ...fHourTimerPicker.dart => custom_halfhour_timer_picker.dart} | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) rename lib/features/devices/view/widgets/ACs/{CustomHalfHourTimerPicker.dart => custom_halfhour_timer_picker.dart} (93%) diff --git a/lib/features/devices/view/widgets/ACs/ac_timer_page.dart b/lib/features/devices/view/widgets/ACs/ac_timer_page.dart index e501a85..460a1ec 100644 --- a/lib/features/devices/view/widgets/ACs/ac_timer_page.dart +++ b/lib/features/devices/view/widgets/ACs/ac_timer_page.dart @@ -9,7 +9,7 @@ import 'package:syncrow_app/features/devices/bloc/acs_bloc/acs_event.dart'; import 'package:syncrow_app/features/devices/bloc/acs_bloc/acs_state.dart'; import 'package:syncrow_app/features/devices/model/device_model.dart'; -import 'package:syncrow_app/features/devices/view/widgets/ACs/CustomHalfHourTimerPicker.dart'; +import 'package:syncrow_app/features/devices/view/widgets/ACs/custom_halfhour_timer_picker.dart'; import 'package:syncrow_app/features/shared_widgets/default_scaffold.dart'; import 'package:syncrow_app/features/shared_widgets/text_widgets/body_large.dart'; import 'package:syncrow_app/generated/assets.dart'; diff --git a/lib/features/devices/view/widgets/ACs/CustomHalfHourTimerPicker.dart b/lib/features/devices/view/widgets/ACs/custom_halfhour_timer_picker.dart similarity index 93% rename from lib/features/devices/view/widgets/ACs/CustomHalfHourTimerPicker.dart rename to lib/features/devices/view/widgets/ACs/custom_halfhour_timer_picker.dart index a84043a..83f213f 100644 --- a/lib/features/devices/view/widgets/ACs/CustomHalfHourTimerPicker.dart +++ b/lib/features/devices/view/widgets/ACs/custom_halfhour_timer_picker.dart @@ -3,8 +3,7 @@ import 'package:flutter/material.dart'; class CustomHalfHourPicker extends StatefulWidget { final Function(double) onValueChanged; - const CustomHalfHourPicker({Key? key, required this.onValueChanged}) - : super(key: key); + const CustomHalfHourPicker({super.key, required this.onValueChanged}); @override _CustomHalfHourPickerState createState() => _CustomHalfHourPickerState();