Skip to content

Instantly share code, notes, and snippets.

@sandoche
Created November 23, 2018 14:07
Show Gist options
  • Save sandoche/9b29774640072deede3cca901293ea1b to your computer and use it in GitHub Desktop.
Save sandoche/9b29774640072deede3cca901293ea1b to your computer and use it in GitHub Desktop.
Lessons Learned on Writing Apps with NativeScript VueJS - Example 3
import { isAndroid, isIOS, device } from 'tns-core-modules/platform'
if (isAndroid && device.sdkVersion >= "21") {
// do something
} else if (isIOS) {
// do something else
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment