Note: You are on the beta version of our docs. This is a work in progress and may contain broken links and pages. 
Classes
Image
Image
Represents a class that provides functionality for loading and streching image(s).
Summary 
Constructors
Properties
152 properties inherited from View
Click to expand
Constructors 
Properties 
android 
 defined in @nativescript/core/ui/image/index.d.ts:16:1
Gets the native [android widget](http://developer.android.com/reference/android/widget/ImageView.html) that represents the user interface for this component. Valid only when running on Android OS.
decodeHeight 
decodeHeight: LengthType
 defined in @nativescript/core/ui/image/index.d.ts:60:1
Gets or sets the desired decode height of the image.
This property is Android specific.
decodeWidth 
decodeWidth: LengthType
 defined in @nativescript/core/ui/image/index.d.ts:66:1
Gets or sets the desired decode width of the image.
This property is Android specific.
imageSource 
imageSource: ImageSource
 defined in @nativescript/core/ui/image/index.d.ts:26:1
Gets or sets the image source of the image.
ios 
 defined in @nativescript/core/ui/image/index.d.ts:21:1
Gets the native iOS [UIImageView](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIImageView_Class/) that represents the user interface for this component. Valid only when running on iOS.
isLoading 
Readonly
 defined in @nativescript/core/ui/image/index.d.ts:36:10
Gets a value indicating if the image is currently loading.
loadMode 
 defined in @nativescript/core/ui/image/index.d.ts:49:1
Gets or sets the loading strategy for images on the local file system:
- **sync** - blocks the UI if necessary to display immediately, good for small icons.
- **async** *(default)* - will load in the background, may appear with short delay, good for large images.
When loading images from web they are always loaded **async** no matter of loadMode value.
src 
src: string | ImageSource | ImageAsset
 defined in @nativescript/core/ui/image/index.d.ts:31:1
Gets or sets the source of the Image. This can be either an URL string or a native image instance.
stretch 
stretch: ImageStretchType
 defined in @nativescript/core/ui/image/index.d.ts:41:1
Gets or sets the image stretch mode.
tintColor 
tintColor: Color
 defined in @nativescript/core/ui/image/index.d.ts:54:1
A color used to tint template images.
- Previous
 - HtmlView
 - Next
 - ImageAsset