This commit is contained in:
Junhui Chen 2025-08-07 12:13:27 +08:00
parent 048d2a905c
commit cffa38605d

View File

@ -1,4 +1,3 @@
import ReturnArrow from "@/assets/icons/svg/returnArrow.svg";
import Chat from "@/components/ask/chat";
import AskHello from "@/components/ask/hello";
import SendMessage from "@/components/ask/send";
@ -9,12 +8,9 @@ import { useRef, useState } from 'react';
import { useTranslation } from "react-i18next";
import {
FlatList,
Keyboard,
KeyboardAvoidingView,
Platform,
StyleSheet,
TextInput,
TouchableOpacity,
View
} from 'react-native';
import Animated, { useSharedValue } from 'react-native-reanimated';
@ -227,7 +223,7 @@ export default function AskScreen() {
return (
<View style={[styles.container, { paddingTop: insets.top, paddingBottom: insets.bottom }]}>
{/* 导航栏 */}
<View style={[styles.navbar, isHello && styles.hiddenNavbar]}>
{/* <View style={[styles.navbar, isHello && styles.hiddenNavbar]}>
<TouchableOpacity
style={styles.backButton}
onPress={() => {
@ -247,7 +243,7 @@ export default function AskScreen() {
</TouchableOpacity>
<ThemedText style={styles.title} onPress={() => { router.push('/owner') }}>MemoWake</ThemedText>
<View style={styles.placeholder} />
</View>
</View> */}
<View style={styles.contentContainer}>
<ThemedText>1</ThemedText>
@ -256,14 +252,18 @@ export default function AskScreen() {
</ThemedText> */}
{/* 欢迎页面 */}
<Animated.View
style={[styles.absoluteView, welcomeStyle, { zIndex: 1 }]}
style={[styles.absoluteView,
// welcomeStyle,
{ zIndex: 1 }]}
>
<AskHello setUserMessages={setUserMessages} setConversationId={setConversationId} setIsHello={setIsHello} />
</Animated.View>
{/* 聊天页面 */}
<Animated.View
style={[styles.absoluteView, chatStyle, { zIndex: 0 }]}
style={[styles.absoluteView,
// chatStyle,
{ zIndex: 0 }]}
>
<Chat
ref={chatListRef}