peacechen / react-native-modal-selector

A cross-platform (iOS / Android), selector/picker component for React Native that is highly customizable and supports sections.
MIT License
369 stars 129 forks source link

Set showsVerticalScrollIndicator to false on scrollview #147

Closed ticholNyler closed 4 years ago

ticholNyler commented 4 years ago

I dont see any props for the scrollview besides the accessibility stuff. Can I hide the scrollbar?

peacechen commented 4 years ago

scrollViewPassThruProps has been published in 2.0.2.

Example:

    <ModalSelector
        ...
        scrollViewPassThruProps={{showsVerticalScrollIndicator: false}}
    />