Skip to content

Commit

Permalink
fix(android): android default tab size up to fit most of the android
Browse files Browse the repository at this point in the history
Signed-off-by: Sacha Froment <sfroment42@gmail.com>
  • Loading branch information
sfroment committed Feb 4, 2019
1 parent 1188d52 commit 67da527
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -88,7 +88,7 @@ const ContactIdentity = ({ data }) => <>
</View>
<Text large color={colors.fakeBlack} center padding>{data.displayName}</Text>
<View
style={{ marginLeft: 15, marginRight: 15, marginBottom: 8, height: Platform.OS === 'android' ? 330 : undefined }}>
style={{ marginLeft: 15, marginRight: 15, marginBottom: 8, height: Platform.OS === 'android' ? 350 : undefined }}>
{<ContactIdentityTabbedContent screenProps={{ data }} />}
</View>
</>
Expand Down

0 comments on commit 67da527

Please sign in to comment.