anln_50 #17
|
@ -1,8 +1,8 @@
|
|||
import React, { useState, useEffect, useCallback } from "react";
|
||||
import { Image, TouchableOpacity, View } from "react-native";
|
||||
import { createBottomTabNavigator } from "@react-navigation/bottom-tabs";
|
||||
// import Stream from "../Stream";
|
||||
import NoticeNav from "../NoticeDetail";
|
||||
import Stream from "../Stream";
|
||||
// import NoticeNav from "../NoticeDetail";
|
||||
import My from "../My";
|
||||
import Posts from "../Posts";
|
||||
import Space from "../Space";
|
||||
|
@ -122,6 +122,29 @@ export default function HomeTab({ navigation, route }) {
|
|||
/>
|
||||
)}
|
||||
<Tab.Screen
|
||||
name="Stream"
|
||||
component={Stream}
|
||||
options={{
|
||||
title: "发现",
|
||||
headerShown: false,
|
||||
tabBarIcon: ({ focused, color, size }) => {
|
||||
if (focused) {
|
||||
return (
|
||||
<Image
|
||||
source={require("../../assets/icon/others/streamfocus.png")}
|
||||
/>
|
||||
);
|
||||
} else {
|
||||
return (
|
||||
<Image
|
||||
source={require("../../assets/icon/others/streamblur.png")}
|
||||
/>
|
||||
);
|
||||
}
|
||||
},
|
||||
}}
|
||||
/>
|
||||
{/* <Tab.Screen
|
||||
name="NoticeNav"
|
||||
component={NoticeNav}
|
||||
options={{
|
||||
|
@ -143,7 +166,7 @@ export default function HomeTab({ navigation, route }) {
|
|||
}
|
||||
},
|
||||
}}
|
||||
/>
|
||||
/> */}
|
||||
<Tab.Screen
|
||||
name="My"
|
||||
component={My}
|
||||
|
|
|
@ -25,7 +25,7 @@ export default function SpaceSearch({ navigation }) {
|
|||
const [isloading, setIsloading] = useState(false);
|
||||
const searchRef = useRef(null);
|
||||
const getData = async (searchValue) => {
|
||||
if (searchValue.length != 6) {
|
||||
if (searchValue?.length != 6) {
|
||||
setIsloading(false);
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue