react-native-quick-actions
react-native-quick-actions copied to clipboard
A react-native interface for Touch 3D home screen quick actions
Hi, I am facing an issue while setting up custom icon in iOS. Please let me know if anyone having the idea how to fix this . My code: QuickActions.setShortcutItems([...
Hi, I have removed all the usages and package. When we update the app, the quick actions are still shown without icons on the app. It's getting removed only when...
componentDidMount(){ QuickActions.popInitialAction() .then(data => console.log(data) .catch(console.error); } } Return null in data. DeviceEventEmitter is working but on cold start it is not working. ReactNative - 0.60.5 react-native-quick-actions - 0.3.13
See https://github.com/facebook/react-native/issues/29633#issuecomment-694187116 for more context.
Resolves #98 To create static shortcuts, follow [Android Docs](https://developer.android.com/guide/topics/ui/shortcuts/creating-shortcuts) But! I didn't figure out how to make it work with cold start. It works when app is in foreground, but...
It is not working using deep link on Webview ``` QuickActions.setShortcutItems([ { type: "Search", // Required title: "Search Anything", // Optional, if empty, `type` will be used instead subtitle: "Search...
For now library supports only dynamic shortcuts for android. Any plans about static ones? @huangmr
it doesn't work on iOS14
In iOS (tested in 13.3.1) when the app is in background, the item press is not working. It seems that the event "quickActionShortcut" is never triggered. My react-native code is...