Jacse / react-native-app-intro-slider

Simple and configurable app introduction slider for react native
MIT License
1.65k stars 330 forks source link

showsHorizontalScrollIndicator={false} doesn't hide scroll component on Mac #248

Open mayyaab opened 3 years ago

mayyaab commented 3 years ago

showsHorizontalScrollIndicator={false} doesn't hide scroll component on Mac

Screen Shot 2021-08-10 at 5 22 47 PM
<AppIntroSlider
      activeDotStyle={[{backgroundColor: colors.inputLightColor}, style.dots]}
      dotStyle={[{backgroundColor: colors.iconColor}, style.dots]}
      showPrevButton
      scrollEnabled={false}
      renderItem={renderItem}
      renderDoneButton={renderDoneButton}
      renderNextButton={renderNextButton}
      renderPrevButton={renderPrevButton}
      data={slides}
      onDone={onDone}
      onSlideChange={onSlideChange}
      bottomButton={false}
      ref={(ref) => (slider = ref!)}
      showsHorizontalScrollIndicator={false}
    />