An expo module that allows you to make native widgets in iOS and android.
Use v1 packages for expo 49, or v2 for expo 51+.
npx expo install @bittingz/expo-widgets
See the example project for more clarity. You can omit the android or ios folders and setup if you only wish to support one platform.
- Create a folder where you want to store your widget files.
- In your plugins array (app.config.{js/ts} add:
[
"@bittingz/expo-widgets",
{
ios: {
src: "./src/my/path/to/ios/widgets/folder",
devTeamId: "your apple dev team ID",
mode: "production",
moduleDependencies: [],
useLiveActivities: false,
frequentUpdates: false,
entitlements: {
"any xcode entitlement the widget needs": "entitlement value"
}
},
android: {
src: "./src/my/path/to/android/widgets/folder",
widgets: [
{
"name": "MyWidgetProvider",
"resourceName": "@xml/my_widget_info"
}
],
distPlaceholder: "optional.placeholder"
}
}
],
- Within your iOS widget folder create a Module.swift file, Widget Bundle, Assets.xcassets, and Widget swift files.
- Your android folder should mimic android studio setup, so it has two subfolder paths: /android/main/java/package_name and /android/res/.... The package_name is currently being worked on for adjusting the name. Inside you place your widget.kt files. The res folder should contain your assets, the same as in android studio.
- If you have any swift files you need to use within Module.swift, simply add them to the moduleDependencies array in your app.config. This is particularly useful for data models between the module and widget.
- To share data between your app and widgets you can use a variety of methods, but the easiest way is to use UserPreferences. This plugin automatically handles it for you, so all you have to do is make sure to use a suiteName with the correct format. See the example project.
- If you want to use custom fonts in your iOS widget, use my expo-native-fonts package; see the example project for usage. Android widgets work well with resource folders and don't require additional dependencies.
- For android, set resourceName to your file name in /res/xml/***_info.xml
- For android apps which require multiple distributions with different package names you can use distPlaceholder which will replace all instances of the provided placeholder in widget source files with your app.config.(json/ts/js). So if your source files include "package com.company.app" and "import com.company.app" and you have two distributions (com.company.app for prod and dev.company.app for dev) then setting distPlaceholder to com.company.app will replace all package and import references to the correct distribution each build. You can omit this field if it's not relevant to you. iOS requires no configuration for multiple distribution apps.
If you need to override xcode options (such as handling a swift version mismatch) you can add the following:
xcode: {
configOverrides: {
SWIFT_VERSION: '5.0',
},
},
The configOverrides properties are the xcodeproj values and must match case exactly.
cd example
npm run prebuild:ios
npm run ios
OR
npm run prebuild:android
npm run android
If you use R in your widget kotlin file to get layouts, you may get an unresolved reference error for R. In this case, simply add "package your.appconfig.packageid.R", delete your android folder and rebuild.
Give my other expo module a try. You'll need to put the fonts config before the widgets config.
If you need widgets designed & developed, reach out for more details.
A huge thanks to gashimo for a great baseline to start from.