Rachmad Alif Firdaus
Rachmad Alif Firdaus
How to implementation in android using Gradle or maven? When unavailable, can you guide how to import jar file maybe.?
Hello, after shot the photo, I got the next activity going to a blank image.
 Just like the image, I have no any clue from documentation about how to change it
From the documentation, it will be listen after iphone success did the screenshot.
### Version 0.71.4 ### Buld target iOS ### Output of `react-native info` ``` System: OS: macOS 13.6.3 CPU: (4) x64 Intel(R) Core(TM) i5-7200U CPU @ 2.50GHz Memory: 1.00 GB /...
How to handle callback when Notificationin background? I have put the code into `index.js` ``` // ... Notifications.events().registerNotificationReceivedForeground( (notification, completion) => { console.log( `Notification received in foreground: ${notification.title} : ${notification.body}`,...
After 2 years I'm back again to my `react-native init` project. I have update all my dependency and update my XCode in latest. I'm follow the latest installation instruction. but...
I try to implementation like this: ```` class NotifHandler { onNotification(notification) { console.log('onNotifHandler:', notification); if (typeof this._onNotification === 'function') { this._onNotification(notification); } } onRegister(token) { // console.log('NotifHandler:', token); if (typeof...
I need event listener when notif is fire by schedule time. ``` useEffect(() => { const type = 'notification'; PushNotificationIOS.addEventListener(type, onRemoteNotification); return () => { PushNotificationIOS.removeEventListener(type); }; }); const onRemoteNotification...
Sometimes, my app want to getting current location to user but not every time is successful. ```js Geolocation.getCurrentPosition( ({ coords: { latitude, longitude, accuracy } }) => { setUserLoc({ ...userloc,...