How To Fix A View On Screen Inside A Scrollview - React Native
I want to set fixed position on device screen but inside a ScrollView my View shows on bottom of ScrollView. my codes: ...
Solution 1:
Just use this type of structure:
<View><ScrollView></ScrollView><View></View></View>
Your scroll view will have different height, based on number of items, it is an overhead to keep the View
in the ScrollView
, and probably you will have a lot of bugs and weird behaviors..
Post a Comment for "How To Fix A View On Screen Inside A Scrollview - React Native"