App Controls
Home🧼 Reset API 🧼
Reset🌀 Trigger Loading Sign 🌀
ShowHide
💬 Sharing Dialog API 💬
Share (message, link)Share (message, no link)
Share (no message, link)
📱 Take Screenshot API 📱
Save🔔 Ask Push Permission API 🔔
registerpush://🎨 Dynamic UI API 🎨
WebViewGold includes the following features to dynamically change the UI appearance:
- statusbarcolor://
- The MASTER COMMAND to change the color of the status bar and any other relevant UI features automatically (such as the text color, the bottom bar on iOS, navigation bar on Android, pull to refresh on iOS, etc).
- statusbartextcolor://
- Allows you to manually change the text color of the status bar (iOS and Android).
- bottombarcolor://
- If a bottom bar (iOS) or navigation bar (Android) UI element exists, allows you to manually change its color (separately to other UI elements).
- navbartextcolor://
- *ANDROID ONLY* Allows you to manually change the text color of the navigation bar on Android. Request will be ignored on iOS (the bottom bar on iOS does not have text).
Change the Color of the Status Bar (and other UI)
rgb = {red, green, blue}
values = [0, 255]
"statusbarcolor://0,255,0" (Green)
"statusbarcolor://0,0,255" (Blue)
"statusbarcolor://255,255,212" (Light Yellow)
"statusbarcolor://55,4,79" (Dark Purple)
"statusbarcolor://19,9,68" (Very Dark Blue)
"statusbarcolor://0,0,0" (Black)
"statusbarcolor://255,255,255" (White)
Change the Color of the Status Bar Text
"black" or "white"
"statusbartextcolor://white""statusbartextcolor://black"
Change the Color of the Bottom Bar
rgb = {red, green, blue}
values = [0, 255]
"bottombarcolor://0,255,0" (Green)
"bottombarcolor://0,0,255" (Blue)
Change the Color of the Navigation Bar Text
"black" or "white"
"navbartextcolor://white""navbartextcolor://black"
Hide/Show the Status Bar
Unpublished Feature / Still in Development
Used to dynamically hide/show the the status bar (and if it exists, the bottom bar) background.
This allows you to achieve a transparent status bar / full-screen appearance. "hidebars://on"
"hidebars://off"
💡 Scanning Mode 💡
Options:
"auto" = turns on scanning mode and automatically turns it off on page redirect
"on" = turns on scanning mode, stays on after page redirects
"off" = turns off scanning mode
"scanningmode://auto""scanningmode://on"
"scanningmode://off"