TF-524 Apply quick search for mobile and tablet

This commit is contained in:
dab246
2022-05-24 11:56:50 +07:00
committed by Dat H. Pham
parent 9a142a0e23
commit 11c9a8713a
30 changed files with 647 additions and 2429 deletions
@@ -7,6 +7,10 @@ class RecentSearch with EquatableMixin {
RecentSearch(this.value, this.creationDate);
factory RecentSearch.now(String word) {
return RecentSearch(word, DateTime.now());
}
@override
List<Object?> get props => [value, creationDate];
}