Guide
Customise Your App
How to customise component styling
import { commentListItemStyles as styles } from './styles'; //... SOMEWHERE INSIDE RETURN STATEMENT
<View
style={styles.descriptionView}
onLayout={(event) => setHeight(event.nativeEvent.layout.height)}
>
<Text
text={item.description}
fontFamily={BODY_FONT}
style={styles.comment}
/>
</View>
//... REST OF COMPONENTHow to add new components
Last updated