App life cycle events
Whenever Nano is opened , appStart is called.
appStart:
This method is called whenever app is opened.
import {NanoApp} from 'react-native-nano';
const onAppStart=({moduleParams})=>{
};
const App = () => {
return <NanoApp screens={[...]} appStart={onAppStart} />;
};
export default App;