Hi I have a problem with components styling.
I wonder to make some input components above the bottom navigation similar to
I'm new at react native, Maybe you can give some articles or videos to archive that.
Thank you so much
in NewsFeedScreen
file add bottom view with position : 'absolute'
and put input inside it
your NewsFeedScreen
file should returnlike this
return(
<View style={{flex:1}}>
//your content here
<View style={{position : 'absolute', bottom : 0, width : '100%'}}>
<TextInput/>
</View>
</View>
)