0.1.0 • Published 1 year ago

react-native-live-activity v0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

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