mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-10 07:07:19 +00:00
33 lines
750 B
Dart
33 lines
750 B
Dart
import 'package:equatable/equatable.dart';
|
|
// import 'package:graphview/GraphView.dart';
|
|
|
|
abstract class HomeState extends Equatable {
|
|
const HomeState();
|
|
|
|
@override
|
|
List<Object> get props => [];
|
|
}
|
|
|
|
class LoadingHome extends HomeState {}
|
|
|
|
class HomeInitial extends HomeState {}
|
|
|
|
class TermsAgreement extends HomeState {}
|
|
|
|
class PolicyAgreement extends HomeState {}
|
|
|
|
// class HomeCounterState extends HomeState {
|
|
// final int counter;
|
|
// const HomeCounterState(this.counter);
|
|
// }
|
|
|
|
// class HomeUpdateTree extends HomeState {
|
|
// final Graph graph;
|
|
// final BuchheimWalkerConfiguration builder;
|
|
|
|
// const HomeUpdateTree({required this.graph, required this.builder});
|
|
|
|
// @override
|
|
// List<Object> get props => [graph, builder];
|
|
// }
|