βΉοΈBrowser Info
Use the Browser Info feature to tailor your app's experience based on the user's device. For example, you can display the Apple Sign In button only to iOS users.
Last updated
Use the Browser Info feature to tailor your app's experience based on the user's device. For example, you can display the Apple Sign In button only to iOS users.
Last updated
// Check if native app
const browserInfo = info.browserInfo();
console.log(browserInfo.isAndroidApp);
console.log(browserInfo.isIOSApp);
console.log(browserInfo.isNativeApp);
// Check connectivity (internet connection);
window.ononline = (e) => { console.log("online") };
window.onoffline = (e) => { console.log("offline") };