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 5d6ab1f548
commit ff9161d8e7
13 changed files with 120 additions and 93 deletions

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>
)
}