推荐开源项目:Notifee - React Native的通知神器
Notifee 是一个用于 React Native 应用程序的库,它允许开发者在 Android 和 iOS 上创建和管理通知。以下是如何使用 Notifee 的基本示例:
首先,您需要安装 Notifee:
npm install @notifee/react-native
或者使用 yarn:
yarn add @notifee/react-native
然后,您需要链接原生模块:
npx pod-install
接下来,您可以在代码中使用 Notifee 来创建和显示通知:
import { Notifee } from '@notifee/react-native';
async function createNotification() {
const id = 'unique_id';
const channelId = 'default';
try {
// 创建通知
const notification = {
title: 'Hello World',
body: 'This is a simple notification',
android: {
channelId,
smallIcon: 'ic_launcher', // 需要在 Android 资源中定义
},
ios: {
threadId: id,
},
};
// 显示通知
const createdNotification = await Notifee.createNotification(notification);
await Notifee.displayNotification(createdNotification.id, channelId);
} catch (e) {
console.error(e);
}
}
createNotification();
这段代码创建了一个简单的通知,并且尝试显示它。Notifee 提供了更多高级功能,如通知点击事件处理、通知悬浮窗、定位通知和更多平台特定功能。
评论已关闭