Version: 0.0.5
Last Updated: Unknown
Notification that pops up from the bottom of the app. Given that iOS and Android have different render behaviours, these components are split into two parts.
Update the App.js file.
import NotificationTop from 'components/NotificationTop'; import NotificationBottom from 'components/NotificationBottom'; export default class App extends Component { render() { return ( <Provider store={store}> <PersistGate persistor={persistor}> <NotificationTop /> <ReduxNavigation /> <NotificationBottom /> </PersistGate> </Provider> ); } }