I'm using the library as:
javascript```
in _layout.tsx
import * as QuickActions from "expo-quick-actions";
...
export default function RootLayout() {
#...
useQuickActionRouting();
useEffect(() => {
QuickActions.setItems([
{
title: "Feedback? Tell us",
subtitle: "Send feedback before you delete",
id: "0",
icon: "mail",
params: { href: "/settings" },
},
]);
}, []);
It shows up just fine on android but not on iOS.
This is true for both simulators, testflight and the actual app-store/play-store deployed version of the app.
Any ideas as to what I might be doing wrong here? I've pruned over the documentation and can find nothing.
I'm using the library as:
javascript```
in _layout.tsx
import * as QuickActions from "expo-quick-actions";
...
export default function RootLayout() {
#...
useQuickActionRouting();
useEffect(() => {
QuickActions.setItems([
{
title: "Feedback? Tell us",
subtitle: "Send feedback before you delete",
id: "0",
icon: "mail",
params: { href: "/settings" },
},
]);
}, []);