Skip to content

Commit

Permalink
finished 0.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Sivan22 committed Sep 1, 2024
1 parent d42509d commit 14cdb64
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion lib/screens/library_browser.dart
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,11 @@ class _LibraryBrowserState extends State<LibraryBrowser>
constraints: const BoxConstraints(maxWidth: 400),
prefixIcon: const Icon(Icons.search),
suffixIcon: IconButton(
onPressed: () => searchController.clear(),
onPressed: () {
searchController.clear();
items = getGrids(currentTopCategory);
setState(() {});
},
icon: const Icon(Icons.cancel)),
border: const OutlineInputBorder(
borderRadius:
Expand Down
2 changes: 1 addition & 1 deletion lib/screens/text_book_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ class _TextBookViewerState extends State<TextBookViewer>
? Stack(children: [
buildHTMLViewer(),
Container(
color: Theme.of(context).primaryColor,
color: Theme.of(context).colorScheme.surface,
child: buildTabBar()),
])
: Row(
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msix_config:
display_name: אוצריא
publisher_display_name: sivan22
identity_name: sivan22.Otzaria
msix_version: 0.1.8.7
msix_version: 0.1.8.10
logo_path: assets/icon/icon.png
publisher: CN=sivan22, O=sivan22, C=IL
certificate_path: C:\dev\sivan22.pfx
Expand All @@ -33,7 +33,7 @@ msix_config:
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
# In Windows, build-name is used as the major, minor, and patch parts
# of the product and file versions while build-number is used as the build suffix.
version: 0.1.8-beta.2
version: 0.1.8

environment:
sdk: ">=3.2.6 <4.0.0"
Expand Down

0 comments on commit 14cdb64

Please sign in to comment.