在用于ListItem的React Native Elements文档(https://react-native-training.github.io/react-native-elements/docs/listitem.html#linear-gradient-scale-feedback)中,ListItem的按钮之间具有填充并被四舍五入。
但是,当我尝试执行以下操作(直接从文档中进行)时,它不会产生相同的样式:
<ListItem
Component={TouchableScale}
friction={90} //
tension={100} // These props are passed to the parent component (here TouchableScale)
activeScale={0.95} //
linearGradientProps={{
colors: ['#FF9800', '#F44336'],
start: [1, 0],
end: [0.2, 0],
}}
ViewComponent={LinearGradient} // Only if no expo
leftAvatar={{ rounded: true, source: { uri: avatar_url } }}
title="Chris Jackson"
titleStyle={{ color: 'white', fontWeight: 'bold' }}
subtitleStyle={{ color: 'white' }}
subtitle="Vice Chairman"
chevronColor="white"
chevron
/>
此外,我尝试添加垫子和分隔器道具,但这不会产生正确的外观。
一个样式如何单独的ListItem组件匹配此样式?
答案 0 :(得分:0)
根据React Native Elements文档-https://react-native-training.github.io/react-native-elements/docs/customization.html#component-styles-所有组件都可以使用 containerStyle 道具分别设置样式。
以下作为道具添加到ListItem中,可以达到上述要求:
containerStyle = {{ marginLeft: 5,
marginRight: 5,
marginTop: 10,
borderRadius: 10, // adds the rounded corners
backgroundColor: '#fff' }}