Image resizeMode='contain' not working in React Native
Your image does not have the context of height and width. You need to specify it.
This should fix your issue:
<Image
style={{ width: "100%", height: "100%" }}
resizeMode={"contain"}
source={imageSource}
/>;