Today Widget extension (iOS) development using React Native
npm install react-native-today-widgetSample result from Complex example:
What is Today Widget?
This library will help you to add iOS Today Widget App Extension without need to open XCode.
- xcodeproj for linking script:
``bash`
$ gem install xcodeprojsudo gem install xcodeproj
You may need to use or sudo gem install -n /usr/local/bin xcodeproj depends on your Ruby installation.
- For React Native compatibility, check peerDependencies in package.json
`bash`
$ yarn add react-native-today-widget
$ react-native link$ npm i react-native-today-widget --save
You could use as well, but don't forget to save it in package.json dependencies. Otherwise RN will not link it.
> Whenever you change Bundle Identifier (CFBundleIdentifier) for main app, you have to run ./node_modules/.bin/bundle-id script or reinstall the module (rm -rf node_modules/react-native-today-widget && yarn)
#### Manual linking
react-native link should works, but in case of some troubles, you could follow general guide for linking libraries.
- file for Step 1 is /node_modules/react-native-today-widget/ios/RNTodayWidgetExtension.xcodeprojTodayWidgetExtension.appex
- as a Step 2, add to Embedded Binaries on the General tab for your main target$(SRCROOT)/../node_modules/react-native-today-widget/ios/TodayWidgetExtension
- in Step 3, add to Header Search Paths
All you need is to create an index.widget.js file at the root and register there your component for key TodayWidgetExtension:
`jsx
const TodayWidget = () => (
Hello Today Widget!
);
AppRegistry.registerComponent('TodayWidgetExtension', () => TodayWidget);
`
> Please note that registering both the widget and the main app in index.js file can cause memory issues. Because the app is also bundled (even if you don't use it in your widget), and it causes 'Unable to load' error. When we split the registration into two different files, the widget and the main app are bundled seperately. See blog post from Maxim Toyberman.
In place of TodayWidget component, you could use any JSX component. See Basic example.
Run your app as usual:
`bash`
react-native run-ios
Display new widget on Search screen or by force touch on your app icon (on devices supporting 3D Touch).
If you need to see logs from TodayWidgetExtension, use:
`bash`
react-native log-ioshost app
> In your extension scheme’s Run phase, you specify a as the executable
Verified experimentally using XCode debugger - while loading big image, Today Widget crashes as soon as it reaches 16 MB memory usage.
Memory usage of Basic example with just one Text element is about 11 MB. Up to 13 MB during content rendering.
> For running Today Widget on device you have to use Release build configuration. Development mode adds too much overhead. Only possibility to run the widget on device in development mode is using Instruments tool to temporarily disable the limit.
so probably gitignored!
- For recommended transparent background simply don't set any backgroundColor for your Today Widget component.
- Human Interface Guidelines
- More about: iOS App Extensions
- Today Widget in App Extension Programming GuideTo investigate more iOS App Extensions with React Native check those:
- react-native-share-extension
- react-native-share-menu
- Messages App/App Extension (iOS10) with React Native
$3
####
DevMenu
Default dev menu is not available in widget, but you could use DevSettings from NativeModules or this prepared DevMenu component to enable Live/Hot reload or remote JS debugging.-
children - trigger element (TouchableOpacity by default)
- style - overriding default style for trigger element
- title - set trigger text ('DM' by default)##### Example
`jsx
import { DevMenu } from 'react-native-today-widget';const TodayWidget = () => (
Hello Today Widget!
{__DEV__ &&
/* Has to be a last element to be clickable,
because it has absolute position */
}
);
`Screenshot of opened Developer Menu:
####
openURL([url:string])
Asks the system open a URL on behalf of the currently running app extension.-
url - the URL to open> If you employ this method to open other apps from your widget, your App Store submission might entail additional review to ensure compliance with the intent of widgets.
####
setExpandable([expandable:boolean = true], [maxHeight:number = 110])
Enables to display native Show More / Less button in top right corner of the widget (iOS 10).-
expandable - if false Show More / Less button is hidden
- maxHeight - height of expanded widgetHeight of collapsed Today Widget is always 110px on iOS 10.
##### Example
`jsx
import { setExpandable } from 'react-native-today-widget';const TodayWidget = () => {
const isExpandable = true;
const maxHeight = 500;
setExpandable(isExpandable, maxHeight);
const onLayout = (event) => {
const height = event.nativeEvent.layout.height;
if (height <= 110) {
console.log('widget is in compact mode');
}
else if (height > 110) {
console.log('widget is in expanded mode');
}
}
return (
Hello Today Widget!
);
};
``You could try Expandable example