component with elevation gets overlap with modal on android
This is how button gets overlap on modal
Bottom sheet has a depth positioning based on a zIndex property, which may cause some problems on android when connected with elevation as you already noticed. In cases like that usually rearranging elements order or their positioning helps. If it doesn't work please provide a snack example or at least a code sample.
If you are using native base button then please put elevation 0 in style props, because native base button default elevation is 2 you need to add into style elevation 0
<Button style={{elevation:0}}/>
I Try to remove using elevation on parent component and add elevation to my child component and its work