Closed ddikodroid closed 3 years ago
@ddikodroid I had the same issue, seems like using alignItems in the screens styles whas stopping the text from being displayed.
My code is working with this simple setup:
<Layout style={styles.screen}><Timeline data={data}/></Layout>
Styles:
const styles = StyleSheet.create({
screen: {
flex: 1,
justifyContent: 'center'
},
})
@ddikodroid I had the same issue, seems like using alignItems in the screens styles whas stopping the text from being displayed.
My code is working with this simple setup:
<Layout style={styles.screen}><Timeline data={data}/></Layout>
Styles:
const styles = StyleSheet.create({ screen: { flex: 1, justifyContent: 'center' }, })
Thank you for the explanation
i have this data
my screen
the result
am i doing something wrong?