Merge branch 'Give-settings-segment-some-bottom-space' into 'master'

Give the last segment bottom space

See merge request bloodyhealth/drip!172
This commit is contained in:
bl00dymarie
2019-02-02 11:38:00 +00:00
@@ -9,7 +9,7 @@ const SettingsSegment = ({ children, ...props }) => {
const style = [styles.settingsSegment, props.style] const style = [styles.settingsSegment, props.style]
if (props.last) style.push(styles.settingsSegmentLast) if (props.last) style.push(styles.settingsSegmentLast)
return ( return (
<View style={[styles.settingsSegment, props.style]}> <View style={[style]}>
{ {
props.title props.title
&& <AppText style={styles.settingsSegmentTitle}>{props.title}</AppText> && <AppText style={styles.settingsSegmentTitle}>{props.title}</AppText>