Links
Comment on page
🎨

Control Style & Colors

🧋 Bubble.io Plugin

[Action] Natively - Background Color

Updating the App background-color

[Action] Natively - Progress Color

Updating a progress bar color

[Action] Natively - Swipe Navigation [iOS]

Enable or disable Swipe Navigation

[Action] Natively - Status Bar Style [iOS]

Updating the Status Bar Style

[Action] Natively - Pull to refresh

Enable or disable Pull to refresh

[Action] Natively - Orientation

Change and lock device orientation in the app

[Action] Natively - Show Progress

Hide / show progress in the app

[Action] Natively - Close App

Closes (kill) the app

🛠 JavaScript SDK

Updating the App background-color

1
const color = "#000000";
2
window.natively.setAppBackgroundColor(color);

Updating a progress bar color

1
const color = "#000000";
2
window.natively.setAppProgressColor(color);

Enable or disable Swipe Navigation [iOS]

1
const toggle = true;
2
window.natively.setAppSwipeNavigationIOS(toggle);

Updating the Status Bar Style [iOS]

1
const style = "NONE"; // DARK, LIGHT or NONE
2
window.natively.setAppStatusBarStyleIOS(toggle);

Enable or disable Pull to refresh [iOS]

1
const toggle = true;
2
window.natively.setAppPullToRefresh(toggle);

Change and lock device orientation in the app

1
const orientation = "PORTRAIT"; // DEFAULT, PORTRAIT or LANDSCAPE
2
window.natively.setAppOrientation(orientation);

Show/Hide Progress in the app

1
const toggle = false;
2
window.natively.showProgress(toggle);

Close the app

1
window.natively.closeApp()