Implemented side tree to devices and rountines screen

This commit is contained in:
Abdullah Alassaf
2025-01-04 17:45:15 +03:00
parent 0341844ea9
commit a98f7e77a3
88 changed files with 1551 additions and 1202 deletions

View File

@ -1,5 +1,5 @@
import 'package:equatable/equatable.dart';
import 'package:graphview/GraphView.dart';
// import 'package:graphview/GraphView.dart';
abstract class HomeState extends Equatable {
const HomeState();
@ -10,17 +10,17 @@ abstract class HomeState extends Equatable {
class HomeInitial extends HomeState {}
class HomeCounterState extends HomeState {
final int counter;
const HomeCounterState(this.counter);
}
// class HomeCounterState extends HomeState {
// final int counter;
// const HomeCounterState(this.counter);
// }
class HomeUpdateTree extends HomeState {
final Graph graph;
final BuchheimWalkerConfiguration builder;
// class HomeUpdateTree extends HomeState {
// final Graph graph;
// final BuchheimWalkerConfiguration builder;
const HomeUpdateTree({required this.graph, required this.builder});
// const HomeUpdateTree({required this.graph, required this.builder});
@override
List<Object> get props => [graph, builder];
}
// @override
// List<Object> get props => [graph, builder];
// }