Image#capInsets

ioscapInsets {top: number, left: number, bottom: number, right: number} When the image is resized, the corners of the size specified by capInsets will stay a fixed size, but the center content and borders of the image will be stretched. This is useful for creating resizable rounded buttons, shadows, and other resizable assets. More info on Apple documentation

Image#blurRadius

iosblurRadius number blurRadius: the blur radius of the blur filter added to the image

Image#defaultSource

iosdefaultSource {uri: string, width: number, height: number, scale: number}, number A static image to display while loading the image source.

Image#accessibilityLabel

iosaccessibilityLabel string The text that's read by the screen reader when the user interacts with the image.

Image#accessible

iosaccessible bool When true, indicates the image is an accessibility element.

Geolocation.watchPosition()

static watchPosition(success, error?, options?) Invokes the success callback whenever the location changes. Supported options: timeout (ms), maximumAge (ms), enableHighAccuracy (bool), distanceFilter(m)

Gesture Responder System

Gesture recognition on mobile devices is much more complicated than web. A touch can go through several phases as the app determines what the user's intention is. For example, the app needs to determine if the touch is scrolling, sliding on a widget, or tapping. This can even change during the duration of a touch. There can also be multiple simultaneous touches. The touch responder system is needed to allow components to negotiate these touch interactions without any additional knowledge about

Generating Signed APK

Android requires that all apps be digitally signed with a certificate before they can be installed, so to distribute your Android application via Google Play store, you'll need to generate a signed release APK. The Signing Your Applications page on Android Developers documentation describes the topic in detail. This guide covers the process in brief, as well as lists the steps required to packaging the JavaScript bundle. Generating a signing key You can generate a private signing key using ke

Geolocation.clearWatch()

static clearWatch(watchID)

Geolocation.stopObserving()

static stopObserving()