How to show the checkbox in the react native app? When it is visible in android emulator

Viewed 11

I'm using checkbox feature in react native from one of the community packages and it is visible in emulator but it does't show it in mobile. WHY?

1 Answers

Add this line in Checkbox tag

tintColors={{ true: '#F15927', false: 'black' }}

Now you can choose colour of your choice.

Related