import { View, Text, ScrollView } from "react-native"; import React, { useEffect, useState } from "react"; import { useTailwind } from "tailwind-rn"; import { useSafeAreaInsets } from "react-native-safe-area-context"; import { Skeleton } from "@rneui/themed"; import { get } from "../../utils/storeInfo"; export default function StreamerProfileSkeleton() { const tailwind = useTailwind(); const insets = useSafeAreaInsets(); //是否展示微信按钮 const [isWechatButtonVisible, setIsWechatButtonVisible] = useState(true); useEffect(() => { const checkUserId = async () => { const account = await get("account"); const userId = account.user_id; if (userId === 314826 || userId === 989430) { setIsWechatButtonVisible(false); return; } }; checkUserId(); }, []); return ( {/* 昵称、认证 */} {/* tag*/} {/* 标签 */} {/* 个性签名 */} 个性签名 {/* 平台 */} 来这找我玩 {/* 关注、私聊、查看微信 */} 关注 私聊 {isWechatButtonVisible && ( 添加微信 )} ); }