change file name

This commit is contained in:
mohammad
2025-01-16 18:01:23 +03:00
parent 31cc210560
commit ee01a89d21
2 changed files with 2 additions and 3 deletions

View File

@ -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';

View File

@ -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();