added prototype of the filter bar + all quotes count

This commit is contained in:
Odweta
2026-03-23 11:06:39 +01:00
parent 67008188b9
commit 2085f010f1
4 changed files with 141 additions and 70 deletions
@@ -18,6 +18,12 @@ class QuoteProvider extends ChangeNotifier {
final QuoteRepository repo = QuoteRepository();
var filterController = TextEditingController(text: '');
void clearFilterController() {
filterController.text = '';
}
QuoteProvider() {
readQuotes(); // auto-load on creation
}