mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-16 10:06:16 +00:00
8 lines
168 B
Dart
8 lines
168 B
Dart
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
|
|
part 'layout_state.dart';
|
|
|
|
class LayoutCubit extends Cubit<LayoutState> {
|
|
LayoutCubit() : super(LayoutInitial());
|
|
}
|