How to add a button in React Native?

后端 未结 9 769
暖寄归人
暖寄归人 2021-01-31 07:46

I´m confused with this whole \"no CSS\" thing, but I understand why it\'s beneficial. All I want to do is place a button in the middle of the screen but I don\'t understand how

9条回答
  •  感情败类
    2021-01-31 08:32

    export default class Login extends React.Component {
      barcodeAction = () => {
        this.props.navigation.navigate('BarCodeScanner')
      }
    
      cleverTapAction = () => {
        this.props.navigation.navigate('CleverTapApp')
      }
    } 
    
    render() {
        return (
          
            
              

提交回复
热议问题