React Native: vertical centering when using ScrollView

前端 未结 6 519
孤街浪徒
孤街浪徒 2021-01-30 12:28

I\'m using React Native and I\'m having trouble retaining vertical centering of elements as soon as I introduce a ScrollView. To demonstrate, I created 3 apps with React Native

6条回答
  •  囚心锁ツ
    2021-01-30 12:56

    I solved this issue with flexGrow instead of flex

    This makes the content container stretch to fill the ScrollView but does not restrict the maximum height, so you can still scroll correctly when the content extends the bounds of the ScrollView

提交回复
热议问题