Gera Istoshin

Results 4 comments of Gera Istoshin

u can try to make skeleton with passed imageId from ListScreen and show it while fetching other details

``` OneSignal.Notifications.canRequestPermission().then(can => { if (can) OneSignal.Notifications.requestPermission(false) }) ``` solves this problem

@MarcHbb solved this problem by passing the following code to all screens that can be reached from this screen (in Stack.Navigator): ``` sharedElements={() => { return [`none`] }} ``` in...