Steve Pascoe
Steve Pascoe
Nar, src/config.js setting export const CACHE_RESET = true; npm start gives same error :(
ok, took a little snooping to get this going but i have something working. 1. update the line in Store.js in setCurrentDatabase(database) from ``` this.currentDatabase.title = database.title; ``` (since ^...
I'm kinda proud of this hack. so added a couple of useRefs const contentContainerRef = useRef(null); const scheduleContainerRef = useRef(null); A useEffect to traverse into the component. ``` useEffect(() =>...
Same, fresh install. iOS working fine. Android first load works, press R in terminal to refresh and onAuthStateChanged is never entered.
Same @hammadbawara, any luck?
> Android: For anyone using react native firebase > > * background: use the messaging().onNotificationOpenedApp() > * close app: use the messaging().getInitialNotification() > * foreground app: use the notifee.onForegroundEvent() Thanks...
Same here, any updates? Google Pixel 7a. I'm finding for push notes its fine but local notes its not using the specified icon. --- Update: specifying smallIcon: 'ic_notification' and adding...
@kartvya here's my channel creation and payload await notifee.createChannel({ id: 'my-channel-id', name: 'My Channel', description: 'Notifications for updates and reminders', sound: 'default', importance: AndroidImportance.HIGH, }); await notifee.displayNotification({ title, body, android:...