根据您提供的代码,问题出在App.tsx
文件中的ScrollView
组件。您需要将contentInsetAdjustmentBehavior
属性设置为"automatic"
,以便让滚动视图自动调整内容。同时,您需要将backgroundColor
属性设置为isDarkMode ? Colors.black : Colors.white
,以便根据当前的深色模式设置背景颜色。
请尝试修改App.tsx
文件中的ScrollView
部分,如下所示:
<ScrollView
contentInsetAdjustmentBehavior="automatic"
style={{
flex: 1,
backgroundColor: isDarkMode ? Colors.black : Colors.white,
}}>
这样应该可以解决您的问题。
5条答案
按热度按时间aemubtdh1#
bmvo0sr52#
snvhrwxg3#
ct3nt3jp4#
eivgtgni5#
@SrinjoyBarman 如果能提供一个使用Snack或者这个template的复现示例,那就太好了。