cleaned some warring messages

This commit is contained in:
Mohammad Salameh
2024-03-03 13:10:03 +03:00
parent 136987c56a
commit 643b206d4c
13 changed files with 12 additions and 19 deletions

View File

@ -1,5 +1,4 @@
import 'package:bloc/bloc.dart';
import 'package:meta/meta.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
part 'auth_state.dart';

View File

@ -1,6 +1,5 @@
part of 'auth_cubit.dart';
@immutable
abstract class AuthState {}
class AuthInitial extends AuthState {}

View File

@ -65,13 +65,13 @@ class EnergyUsage extends StatelessWidget {
case 0:
return SideTitleWidget(
axisSide: meta.axisSide,
child: BodySmall(text: '1'),
child: const BodySmall(text: '1'),
);
case 11:
return SideTitleWidget(
axisSide: meta.axisSide,
child: BodySmall(text: '28'),
child: const BodySmall(text: '28'),
);
default:
return Container();
@ -172,7 +172,7 @@ class EnergyUsage extends StatelessWidget {
return SideTitleWidget(
axisSide: meta.axisSide,
child: BodySmall(text: 'Feb'),
child: const BodySmall(text: 'Feb'),
);
}
}

View File

@ -46,9 +46,9 @@ class DevicesCubit extends Cubit<DevicesState> {
void updateDevicesStatus(DevicesCategoryModel category) {
bool? tempStatus = category.devices[0].status;
for (var AC in category.devices) {
//check if there any AC have a different status than the initial ==> turn off the universal switch
if (AC.status != tempStatus) {
for (var ac in category.devices) {
//check if there any ac have a different status than the initial ==> turn off the universal switch
if (ac.status != tempStatus) {
category.devicesStatus = null;
emit(DeviceSwitchChanged());
return;

View File

@ -1,3 +1,5 @@
// ignore_for_file: constant_identifier_names
import 'package:flutter/cupertino.dart';
import 'package:syncrow_app/features/devices/model/device_model.dart';

View File

@ -30,7 +30,6 @@ class LightsList extends StatelessWidget {
BodySmall(text: lights[index].name ?? ""),
IconButton(
onPressed: () {
var device = lights[index];
// LightsCubit.get(context).selectAC(device);
},
icon: const Icon(

View File

@ -1,5 +1,4 @@
import 'package:bloc/bloc.dart';
import 'package:meta/meta.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
part 'layout_state.dart';

View File

@ -1,6 +1,5 @@
part of 'layout_cubit.dart';
@immutable
abstract class LayoutState {}
class LayoutInitial extends LayoutState {}

View File

@ -1,5 +1,4 @@
import 'package:bloc/bloc.dart';
import 'package:meta/meta.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
part 'profile_state.dart';

View File

@ -1,6 +1,5 @@
part of 'profile_cubit.dart';
@immutable
abstract class ProfileState {}
class ProfileInitial extends ProfileState {}

View File

@ -1,5 +1,4 @@
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:meta/meta.dart';
import 'package:syncrow_app/features/scene/model/scene_model.dart';
part 'scene_state.dart';

View File

@ -1,6 +1,5 @@
part of 'scene_cubit.dart';
@immutable
abstract class SceneState {}
class SceneInitial extends SceneState {}

View File

@ -1,4 +1,4 @@
// ignore_for_file: lines_longer_than_80_chars
// ignore_for_file: lines_longer_than_80_chars, constant_identifier_names
class StringsManager {
static const noRouteFound = 'No route found';