mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-15 01:35:23 +00:00
9 lines
185 B
Dart
9 lines
185 B
Dart
import 'package:bloc/bloc.dart';
|
|
import 'package:meta/meta.dart';
|
|
|
|
part 'layout_state.dart';
|
|
|
|
class LayoutCubit extends Cubit<LayoutState> {
|
|
LayoutCubit() : super(LayoutInitial());
|
|
}
|