completed ui for current user apps
This commit is contained in:
parent
24f458b06f
commit
41b7d22fd9
14 changed files with 718 additions and 37 deletions
|
|
@ -1,4 +1,24 @@
|
|||
part of 'scoop_list_bloc.dart';
|
||||
|
||||
@immutable
|
||||
abstract class ScoopListEvent {}
|
||||
abstract class ScoopListEvent extends Equatable {
|
||||
const ScoopListEvent();
|
||||
|
||||
@override
|
||||
List<Object> get props => [];
|
||||
}
|
||||
|
||||
class ScoopLocate extends ScoopListEvent {}
|
||||
|
||||
class ScoopUpdateRequested extends ScoopListEvent {}
|
||||
|
||||
class ScoopListRequested extends ScoopListEvent {}
|
||||
|
||||
class ScoopSearchRequested extends ScoopListEvent {
|
||||
final String query;
|
||||
|
||||
const ScoopSearchRequested(this.query);
|
||||
|
||||
@override
|
||||
List<Object> get props => [query];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue