Fix: scroll all the way down on home feed

zio/stable
Paul Frazee 2022-11-14 14:18:42 -06:00
parent 25fdb41948
commit 829fa175d0
1 changed files with 6 additions and 1 deletions

View File

@ -58,7 +58,12 @@ export const Home = observer(function Home({
title="Bluesky"
subtitle={`Private Beta${BUILD !== 'prod' ? ` [${BUILD}]` : ''}`}
/>
<Feed key="default" feed={defaultFeedView} scrollElRef={scrollElRef} />
<Feed
key="default"
feed={defaultFeedView}
scrollElRef={scrollElRef}
style={{flex: 1}}
/>
<FAB icon="pen-nib" onPress={onComposePress} />
</View>
)