Programmatically trigger webview goBack, goForward, navigate, and close app.
Programmatically control app navigation, history stack, URL loading, and app closing. These commands bypass web-based navigation and operate directly on the native WebView.
import nativine from 'nativine';
nativine.navigation.goBack();
nativine.navigation.goForward();
import nativine from 'nativine';
nativine.navigation.navigate('https://yourdomain.com/dashboard');
import nativine from 'nativine';
nativine.navigation.closeApp();