美文网首页ReactNative
ReactNative 之 Alert 两个按钮方式 - RN

ReactNative 之 Alert 两个按钮方式 - RN

作者: survivorsfyh | 来源:发表于2020-08-27 19:50 被阅读0次

    日常开发中 Alert 提示框的样式经常会使用到,如下简单实现一个 ReactNative 的 Alert 两个按钮方式的样式实现,具体 code 如下:

    const nav = useCallback(async => {
        return Alert.alert('提示', '具体提示信息内容', [{
            text : '确定',
            onPress : () => {
            },
        }, {
            text : '取消',
            onPress : () => {
            },
        }], {cancelable: false});
    }, []);
    
    return (
        <View
            style={style.examStationCellStyle}
            onTouchEnd={nav}
        >
            <Text style={{ color : '#51ABFF', fontSize : 48, fontWeight : 'bold' }}>{item.stationidname}</Text>
            <Text style={{ color : '#9B9B9B', fontSize : 28, marginTop : 20 }}>{item.subjectidname}</Text>
            <Text style={{ color : '#9B9B9B', fontSize : 28, marginTop : 10 }}>{item.subjectid}</Text>
        </View>
    );
    

    简单记录使用方法,便于日后查看,同时也分享给需要的朋友。


    以上便是此次分享的全部内容,希望能对大家有所帮助!

    相关文章

      网友评论

        本文标题:ReactNative 之 Alert 两个按钮方式 - RN

        本文链接:https://www.haomeiwen.com/subject/mwjhsktx.html