[BREAKGLASS] Append-only mirror of github.com/bluewallet/react-native-live-activity
| android | ||
| example | ||
| ios | ||
| scripts | ||
| src | ||
| .editorconfig | ||
| .gitattributes | ||
| .gitignore | ||
| .watchmanconfig | ||
| .yarnrc | ||
| babel.config.js | ||
| CONTRIBUTING.md | ||
| LICENSE | ||
| package.json | ||
| react-native-live-activity.podspec | ||
| README.md | ||
| tsconfig.build.json | ||
| tsconfig.json | ||
| yarn.lock | ||
react-native-live-activity
This is an example of a Native Module to control the iOS Live Activities.
Installation
npm install react-native-live-activity
Usage
import {
startActivity,
listAllActivities,
endActivity,
updateActivity,
} from 'react-native-live-activity';
await startActivity("Packing", "Jhon", "12 PM")
await updateActivity(activity.id, "Driving", "Jhon", "12 PM");
await endActivity(activity.id);
const [activities, setActivities] = React.useState<any[]>([]);
listAllActivities().then(setActivities);
Example
Run
$ yarn install
Then
$ open ./example/ios/LiveActivityExample.xcworkspace
After that build the xCode project.
https://user-images.githubusercontent.com/3778297/192741742-9d3a9bc5-e26a-4197-b152-5f60796736eb.mp4
License
MIT
Made with create-react-native-library