单选对话框
Properties:
Name | Type | Description |
---|---|---|
visible |
bool | 是否可见 |
cancelable |
bool | 是否允许点击空白区域取消显示,仅限Android |
title |
string | 标题 |
timeout |
number | 超时自动隐藏,设置0或者不设置不会自动隐藏 |
dataSource |
array.<string> | 数据源 |
check |
number | 选中第几个数据源 |
cancel |
string | 取消标题 |
confirm |
string | 确认标题 |
onConfirm |
func | 确认点击回调 |
onCancel |
func | 取消点击回调 |
onDismiss |
func | 对话框消失回调 |
onCheck |
func | 某一行选中状态变更回调 |
Example
import {SingleChoseDialog} from 'miot/ui'
<SingleChoseDialog
dataSource={['message0', 'message1', 'message2', 'message3', 'message4', 'message5', 'message6']}
...
/>