ThakurBallary / react-native-radio-buttons-group

Simple, best and easy to use radio buttons for react native apps.
MIT License
248 stars 70 forks source link

Touch area is too small or unconfortable. #66

Closed halid96 closed 7 months ago

halid96 commented 8 months ago

When it comes to mobile app design, the radio button touch area shall be bigger.

What you can do is increase the touch area by using the hitSlop property eg:

                        <TouchableOpacity
                            hitSlop={{ top: 30, right: 30, bottom: 30, left: 30 }}
                        >
                        </TouchableOpacity>

Also, the touch area still will be small IMO. Allow users to select the radio button by touching on the description/title of the radio button...

Ty for the lib! 😘

ThakurBallary commented 7 months ago

Allow users to select the radio button by touching on the description/title of the radio button It's already available. Here is the Snack Example