import { View, TouchableOpacity, Image as NativeImage, Text, } from "react-native"; import React, { useState, useCallback } from "react"; import { useTailwind } from "tailwind-rn"; import { useSafeAreaInsets } from "react-native-safe-area-context"; export default function Message({ navigation }) { const tailwind = useTailwind(); const insets = useSafeAreaInsets(); return ( {/* 广告轮播 */} {/* 官方消息 */} navigation.navigate("SystemNotice")} style={{ ...tailwind("flex flex-row items-center py-4 mb-2 rounded-xl"), backgroundColor: "#ffffff1a", }} > 系统通知 官方 官方消息通知 11:00 1 navigation.navigate("ActiveNotice")} style={{ ...tailwind("flex flex-row items-center py-4 rounded-xl"), backgroundColor: "#ffffff1a", }} > 活动消息 官方 展示相关活动推送信息 11:00 99 {/* 私聊消息 */} navigation.navigate("MessageDetail", { mid: 1, }) } style={{ ...tailwind("flex flex-row items-center py-4 mb-2 rounded-xl"), backgroundColor: "#333333", }} > 铁粉空间官网 官方客服 请回复您的相关消息 11:00 1 ); }