expo / react-native-action-sheet

A cross-platform ActionSheet for React Native
MIT License
1.37k stars 224 forks source link

[Android] change color of cancel button #275

Closed SymntxHomendra51 closed 1 year ago

SymntxHomendra51 commented 2 years ago

I'm ok with the cancel button of ios but in android if I have a large list of options user cant tap outside of sheet to hide it. To highlight the cancel button I have to mention it in the destructive option list which removes it as a cancel button from the ios and makes it a simple destructive button.

Screenshot_1663315349

showActionSheetWithOptions( { options: opArr?.map(item => item.label), cancelButtonIndex: options?.length, destructiveButtonIndex: options?.length, destructiveColor: 'red', }, index => { opArr[index].onPress() }, )

bradbyte commented 1 year ago

This has been added in 3.14.0. Thanks!