Skip to content

Commit

Permalink
reflex-dom: fix android back button handler
Browse files Browse the repository at this point in the history
  • Loading branch information
ali-abrar committed Aug 16, 2023
1 parent a65ee96 commit 1a6891e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions reflex-dom/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Revision history for reflex-dom

## 0.6.3.0

* Fix bug in android back button handler

## 0.6.2.0

* [#452](https://github.com/reflex-frp/reflex-dom/pull/452) Allow file access on newer android, following usage recommended by the [official docs](https://developer.android.com/reference/androidx/webkit/WebViewAssetLoader)
Expand Down
2 changes: 1 addition & 1 deletion reflex-dom/java/org/reflexfrp/reflexdom/MainWidget.java
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ public void run() {
if(wv.canGoBack()) {
wv.goBack();
} else {
a.defaultOnBackPressed();
super.onBackPressed();
}
}
});
Expand Down
2 changes: 1 addition & 1 deletion reflex-dom/reflex-dom.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 1.24
Name: reflex-dom
Version: 0.6.2.0
Version: 0.6.3.0
Synopsis: Functional Reactive Web Apps with Reflex
Description:
Web applications without callbacks or side-effects.
Expand Down

0 comments on commit 1a6891e

Please sign in to comment.