Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Rider21 committed Mar 5, 2024
1 parent 015faaf commit 6c14a18
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Build
on:
push:
branches:
- db
- db-test
jobs:
build-android:
name: Build App
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: Lint
on:
push:
branches:
- db
- db-test
pull_request:
branches:
- db
- db-test

jobs:
build:
Expand Down
5 changes: 5 additions & 0 deletions src/screens/WebviewScreen/WebviewScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,11 @@ const WebviewScreen = ({ route, navigation }: WebviewScreenProps) => {
onNavigationStateChange={handleNavigation}
injectedJavaScript={injectJavaScriptCode}
setDisplayZoomControls={true}
setSupportMultipleWindows={false}
onShouldStartLoadWithRequest={request => {
console.log(request);
return true;
}}
onMessage={({ nativeEvent }) =>
setTempData(JSON.parse(nativeEvent.data))
}
Expand Down

0 comments on commit 6c14a18

Please sign in to comment.