hi @ascoders how to set loadingRender to center position,
@herarya I fixed like this

@yazhengwang thanks, i follow you code, loader indicator still on top position / header bar
@herarya within a View with justifyContent: 'center' and alignItems: 'center'
@herarya how to solved it?
This works for me:
loadingRender={() => (
<ActivityIndicator
color={colors.defaultPrimaryColor}
size="large"
style={{
height: Dimensions.get('window').height,
alignItems: 'center',
justifyContent: 'center',
}}
/>
)}
It looks like the problem has been solved.
Most helpful comment
This works for me: