import { View, Text, ScrollView } from "react-native"; import React from "react"; import { useTailwind } from "tailwind-rn"; import { useSafeAreaInsets } from "react-native-safe-area-context"; import { Skeleton } from "@rneui/themed"; export default function StreamerProfileSkeleton() { const tailwind = useTailwind(); const insets = useSafeAreaInsets(); return ( {/* 昵称、认证 */} {/* tag*/} {/* 标签 */} {/* 个性签名 */} 个性签名 | {/* 平台 */} 来这找我玩 {/* 关注、私聊、查看微信 */} 关注 私聊 添加微信 ); }