You are reading docs for v1.3.1, click here for the latest version.
이미지 (Image)

This is an overview of the most common usage of 이미지 (Image). For more information about the available properties, methods, or events, head over to the complete API documentation for 이미지 (Image).

이미지(Image) 컴포넌트는 ImageSource 나 URL 로부터 이미지를 표시합니다.


app 디렉토리로부터 상대경로로 이미지 표시

<Image src="~/logo.png" stretch="none" />

URL 로 부터 이미지 표시

<Image src="https://art.nativescript-vue.org/NativeScript-Vue-White-Green.png" stretch="none" />

App_Resources 로 부터 이미지 표시

<Image src="res://icon" stretch="none" />

base64 인코딩 이미지

<Image src="data:Image/png;base64,iVBORw..." stretch="none" />

Props

이름타입설명
srcString, ImageSource이미지 소스.

네이티브 컴포넌트

AndroidiOS
android.widget.ImageViewUIImageView
Contributors