【发布时间】:2021-12-30 23:31:36
【问题描述】:
嘿
我的底栏在滚动视图组件之外,但它仍然与其他组件一起滚动。 我怎样才能修复它?
"
<SafeAreaView styles={SafeViewAndroid.AndroidSafeArea}>
<View style={{ backgroundColor: "#fff", padding: 15 }}>
<HeaderTabs activeTab={activeTab} setActiveTab={setActiveTab} />
<SearchBar cityHandler={setCity} />
</View>
<ScrollView showsVerticalScrollIndicator={false}>
<Categories />
<RestaurantItems restaurantData={restaurantData} />
</ScrollView>
<Divider width={1} />
<BottomTabs />
</SafeAreaView>
"
【问题讨论】:
-
滚动视图之外的任何内容都不会滚动
-
我是在网络上而不是在模拟器上查看它,这可能是问题吗?
-
在网页上可以试试位置属性
标签: javascript react-native mobile