такая:
<TouchableHighlight
underlayColor={theme.list.highlightColor}
style={[styles.container, { backgroundColor, height: cardHeight }]}
onPress={this.onPress}
onPressIn={this.onPressIn}
onPressOut={this.onPressOut}
>
<View
style={[
styles.columnContainer,
{
backgroundColor,
shadowOpacity: 3,
paddingBottom: this.props.isReminderExist
? reminderContainerHeight + 12
: 0,
},
]}
>
<View
style={[
styles.reminderContainer,
Я добавил стили в
TouchableHighlight
а их какого-то черта видно во вложенной вьюхе со стилями styles.reminderContainer. У этой вьюхи такие стили
reminderContainer: {
position: 'absolute',
flexDirection: 'row',
alignItems: 'center',
paddingLeft: 10,
bottom: 0,
height: reminderContainerHeight,
width: '100%',
},
Второй вопрос, почему такое может быть?
А в исходники смотрели? )
Обсуждают сегодня