add search fragment
This commit is contained in:
parent
72a46116b3
commit
4833b5c18c
8 changed files with 542 additions and 6 deletions
17
lib/bloc/scoop_search_event.dart
Normal file
17
lib/bloc/scoop_search_event.dart
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
part of 'scoop_search_bloc.dart';
|
||||
|
||||
abstract class ScoopSearchEvent extends Equatable {
|
||||
const ScoopSearchEvent();
|
||||
|
||||
@override
|
||||
List<Object> get props => [];
|
||||
}
|
||||
|
||||
class ScoopSearchQueryChanged extends ScoopSearchEvent {
|
||||
final String query;
|
||||
|
||||
const ScoopSearchQueryChanged(this.query);
|
||||
|
||||
@override
|
||||
List<Object> get props => [query];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue