Jacse / react-native-app-intro-slider

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

How to align bottom buttons over style? #225

Open igorjos opened 3 years ago

igorjos commented 3 years ago

`<View style={{ flex: 0, justifyContent:'center', width: '100%', height: '80%' }}> <AppIntroSlider renderItem={renderItem} data={slides} onDone={() => { onDone() }} showNextButton={true} showPrevButton={true} showDoneButton={true} dotClickEnabled={false} dotStyle={{display:'none'}} activeDotStyle={{display: 'none'}} bottomButton={true} onSlideChange={slideChange} renderNextButton={renderNextButton} renderDoneButton={renderDoneButton} renderPrevButton={renderPrevButton} scrollEnabled={false}

    />
</View>`

Using this code, each button is displayed in new line, instead of one. Version installed: "react-native-app-intro-slider": "^4.0.4",