My goal is, video should not resized or adjusted when keyboard pop's up, video will remain same as first screen shot. But form components will push up like second screen shot.
<View style={{
flex: 1,
alignItems: 'center',
justifyContent: 'flex-end',
}}>
<Video
source={require('./test_vid3.mp4')}
resizeMode="cover"
style={{width: '100%', height: '110%', position: 'absolute'}}
repeat={true}
paused={false}
/>
<UserSignUp />
</View>