-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
160 additions
and
213 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
|
||
## 🐛 修正 | ||
|
||
- 修复 Web 登陆页中无法跳转 recapture 的问题 #357 | ||
|
||
--- | ||
|
||
|
||
## 🐛 Fixes | ||
|
||
- Fix the issue of unable to redirect to recapture on the web login page. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,7 @@ | ||
import 'package:flutter_inappwebview/flutter_inappwebview.dart'; | ||
|
||
final InAppWebViewGroupOptions inAppWebViewOptions = InAppWebViewGroupOptions( | ||
crossPlatform: InAppWebViewOptions( | ||
useShouldOverrideUrlLoading: true, | ||
mediaPlaybackRequiresUserGesture: false, | ||
), | ||
android: AndroidInAppWebViewOptions( | ||
useHybridComposition: true, | ||
), | ||
ios: IOSInAppWebViewOptions( | ||
allowsInlineMediaPlayback: true, | ||
)); | ||
final InAppWebViewSettings inAppWebViewSettings = InAppWebViewSettings( | ||
useShouldOverrideUrlLoading: true, | ||
mediaPlaybackRequiresUserGesture: false, | ||
useHybridComposition: true, | ||
allowsInlineMediaPlayback: true); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.