我正在使用 SectionList 并且选项卡呈现为几个元素,活动以黑色背景突出显示(见下图)。如何使选定的选项卡与动画一起被选中,而不仅仅是出现?
renderTab={({ name, isActive }) => (
<View
style={[
styles.tabContainer
]}
>
<Text
style={[
styles.tabText,
{
color: isActive ? 'white' : '#9e9e9e',
backgroundColor: isActive ? 'black' : 'white',
}
]}
>
{name}
</Text>
</View>
)}
这是今天的样子
- 项目清单