/react-native-live-activity

iOS Live Activity for React Native

Primary LanguageJavaMIT LicenseMIT

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.

Simulator.Screen.Recording.-.iPhone.14.Pro.-.2022-09-28.at.10.20.58.mp4

License

MIT


Made with create-react-native-library