Sizing and spacing fixes based on on-device testing

This commit is contained in:
Paul Frazee
2022-11-05 16:12:06 -05:00
parent 11c5000b5b
commit e64fe9d36e
13 changed files with 120 additions and 93 deletions
+4 -2
View File
@@ -18,9 +18,11 @@ export const PostThread = ({visible, params}: ScreenParams) => {
}, [visible, store.nav, name])
return (
<View>
<View style={{flex: 1}}>
<ViewHeader title="Post" subtitle={`by ${name}`} />
<PostThreadComponent uri={uri} />
<View style={{flex: 1}}>
<PostThreadComponent uri={uri} />
</View>
</View>
)
}