From d280c04c4dd96b0b5c0c73bb6226952aeb806ba7 Mon Sep 17 00:00:00 2001 From: sivan22 Date: Wed, 15 May 2024 14:47:14 +0300 Subject: [PATCH] update readme --- README.md | 1 + lib/screens/library_browser.dart | 1 + 2 files changed, 2 insertions(+) diff --git a/README.md b/README.md index b8f38dfd5..6e02bb12a 100644 --- a/README.md +++ b/README.md @@ -82,6 +82,7 @@ So i decided to make one myself. I did not know Dart and Flutter at all in the b The database itself is accessible to everyone following the important work of the Sefaria organization, so a big thank to them for that. Key features of the project: +* the software is FREE and will be ALLWAYS FREE. * Built to work effeciently on any device, including Windows, Linux, and Android. * The app is designed to be as user friendly as possible. * A thorough selection process has been undertaken to ensure that the books are suitable for the Torah community diff --git a/lib/screens/library_browser.dart b/lib/screens/library_browser.dart index f299f5416..96150be1f 100644 --- a/lib/screens/library_browser.dart +++ b/lib/screens/library_browser.dart @@ -82,6 +82,7 @@ class _LibraryBrowserState extends State { builder: (context, snapshot) { if (snapshot.hasData) { return ListView( + key: PageStorageKey(currentTopCategory.toString()), children: snapshot.data!, ); }