溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

React native 的彈出層組件使用

發(fā)布時(shí)間:2020-07-30 01:46:12 來(lái)源:網(wǎng)絡(luò) 閱讀:675 作者:jianngdeqin 欄目:移動(dòng)開發(fā)

組件名稱:Alert、AlertIOS  具體代碼如下    

/*彈出層測(cè)試*/
import React,{Component} from 'react';
import {
  StyleSheet,
  View,
  Image,
  Text,
  TouchableOpacity,
  ScrollView,
  Navigator,
  Alert, //引入Alert組件
  TouchableHighlight,
  AlertIOS  //引入AlertIOS組件
} from 'react-native';
//創(chuàng)建一個(gè)組件
class CustomButton extends Component {
  render() {
    return (
      <TouchableHighlight    
        style={styles.button}
        underlayColor="red"   //觸摸的時(shí)候顏色改變
        onPress={this.props.onPress}>  //當(dāng)前觸發(fā)時(shí)間
        <Text style={styles.buttonText}>{this.props.text}</Text>
      </TouchableHighlight>
    );
  }
}
//默認(rèn)輸出組件
export default class AlertDemo extends Component {
  render() {
    return (
      <View style={styles.container}>
        <Text style={{height:30,color:'black',margin:8}}>
          彈出框?qū)嵗?        </Text>
        //觸發(fā)事件
        <CustomButton text='點(diǎn)擊彈出默認(rèn)Alert'
          onPress={()=>Alert.alert('溫馨提醒','確定退出嗎?')}
          />
        <CustomButton text='點(diǎn)擊彈出兩個(gè)按鈕的Alert'
          onPress={()=>Alert.alert('溫馨提醒','確定退出嗎?',[
            {text:'取消'},
            {text:'確定',}
            ])}
          />
        <CustomButton text='點(diǎn)擊彈出三個(gè)按鈕的Alert'
          onPress={()=>AlertIOS.alert('溫馨提醒','確定退出嗎?',[
            {text:'One'},
            {text:'Two'},
            {text:'Two'},
            {text:'Two'},
            {text:'Two'},
            {text:'Two'},
            {text:'Two'},
            {text:'Two'},
            {text:'Two'},
            {text:'Two'},
            {text:'Two'},
            {text:'Two'},
            ])}
          />
          <CustomButton text='點(diǎn)擊出現(xiàn)輸入框'
            onPress={()=>AlertIOS.prompt('溫馨提醒','確定退出嗎?',[
              {text:'取消'},
              {text:'確定',}
              ])}
            />

      </View>
    );
  }
}



var styles = StyleSheet.create({
  container:{
    backgroundColor:"#fff",
    flex:1,
    marginTop:65,
},
button: {
  margin:5,
  backgroundColor: 'white',
  padding: 15,
  borderBottomWidth: StyleSheet.hairlineWidth,
  borderBottomColor: '#cdcdcd',
}


})


向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI