improve find in page

This commit is contained in:
Fabian Freund
2025-05-05 14:32:19 +02:00
parent 53bba6e633
commit 98191f38d3
10 changed files with 274 additions and 73 deletions
@@ -1,17 +1,23 @@
import 'package:fast_equatable/fast_equatable.dart';
class FindResultState with FastEquatable {
final String? lastSearchText;
final int activeMatchOrdinal;
final int numberOfMatches;
final bool isDoneCounting;
bool get hasMatches => numberOfMatches > 0;
FindResultState({
required this.lastSearchText,
required this.activeMatchOrdinal,
required this.numberOfMatches,
required this.isDoneCounting,
});
factory FindResultState.$default() => FindResultState(
lastSearchText: null,
activeMatchOrdinal: -1,
numberOfMatches: 0,
isDoneCounting: false,
@@ -19,6 +25,7 @@ class FindResultState with FastEquatable {
@override
List<Object?> get hashParameters => [
lastSearchText,
activeMatchOrdinal,
numberOfMatches,
isDoneCounting,