Nelson Kamga
Nelson Kamga
@gonzalovp As of now you can't achieve that with the plugin. I recommend you fork the repo and modify the `components/DoneButton.ios.js` and `components/DoneButton.android.js` files to suit your needs.
Hello @SandroMachado this behaviour is due to the use of `setState` in your callback. Using `setState` triggers the `render` method thereby reinitializing the `AppIntro` component (and resetting pagination to first...
@esutton I guess this is a bit late but the issue you are facing is due to `react-native-swiper`, a dependency of `react-native-app-intro`. The latter doesn't support screen rotation (landscape mode)...
Hello! The peewee example from the Flask-Security website is quite outdated. `flask-peewee` is deprecated. I suggest you try the following snippet: ``` from peewee import * from playhouse.flask_utils import FlaskDB...