React-Native Button style not work

前端 未结 9 1112
傲寒
傲寒 2020-12-24 10:33

Import_this

import {AppRegistry, Text, View, Button, StyleSheet} from \'react-native\';

This my

9条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-24 10:44

    React Native buttons are very limited in the option they provide.You can use TouchableHighlight or TouchableOpacity by styling these element and wrapping your buttons with it like this

                 
                

    You can also use react library for customised button .One nice library is react-native-button (https://www.npmjs.com/package/react-native-button)

提交回复
热议问题