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

Build your Swift module

Take inspiration from the example to build your own Swift module.

Usage

import {
startActivity,
listAllActivities,
endActivity,
updateActivity,
} from 'react-native-live-activity';

// Please be careful to use the same interface as the one you defined in your Swift module.
interface LiveActivityParams {
  status: string;
  driverName: string;
  expectedDeliveryTime: string;
}

await startActivity({
  status: "Packing",
  driveName: "John",
  expectedDeliveryTime: "12 PM"
})
await updateActivity(activity.id, {
  status: "Driving",
  driveName: "John",
  expectedDeliveryTime: "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