wip: bloc for files
This commit is contained in:
10
lib/state/app/modules/files/bloc/files_event.dart
Normal file
10
lib/state/app/modules/files/bloc/files_event.dart
Normal file
@ -0,0 +1,10 @@
|
||||
|
||||
import '../../../infrastructure/utilityWidgets/loadableHydratedBloc/loadable_hydrated_bloc_event.dart';
|
||||
import 'files_state.dart';
|
||||
|
||||
sealed class FilesEvent extends LoadableHydratedBlocEvent<FilesState> {}
|
||||
class EnterFolder extends FilesEvent {
|
||||
String absolutePath;
|
||||
EnterFolder(this.absolutePath);
|
||||
}
|
||||
|
Reference in New Issue
Block a user