Control touchable area in react-native

前端 未结 2 1568
花落未央
花落未央 2021-02-06 22:09

I have a square TouchableOpacity button, whose graphics is just a small dot icon in the middle, and the rest is transparent background. I find that in many Android

2条回答
  •  礼貌的吻别
    2021-02-06 22:59

    I am just adding some code for easy referencing:

    
        
            
               Button text
             
        
    
    

    Where the parent button container has the following style. Since the width is 150, I have given left and right as 50 to increase the clickable area.

     buttonStyle:{
        alignItems:'center',
        backgroundColor: '#F92660',
        width:150,
        height:50,
        marginTop:20,
        marginBottom:10,
        marginRight:15,
        padding:5,
      },
    

提交回复
热议问题