We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55986f0 commit cc32100Copy full SHA for cc32100
package.json
@@ -1,9 +1,9 @@
1
{
2
"name": "react-native-widget-picker",
3
- "version": "1.0.0",
+ "version": "1.0.1",
4
"license": "MIT",
5
- "main": "src",
6
- "module": "src",
+ "main": "dist/cjs",
+ "module": "dist/mjs",
7
"react-native": "src",
8
"source": "src",
9
"peerDependencies": {
src/index.ios.ts
@@ -0,0 +1,4 @@
+export const WidgetPicker = {
+ isRequestPinAppWidgetSupported: () => false,
+ requestPinAppWidget: (widgetClassKey: string) => Promise.resolve({message: 'not supported on ios'})
+} as const
0 commit comments