I have used React native - Activity Indicator with scrollView for Form fields. while submitting form loading indicator is not displaying. Found solution for FlatList but how to display loader with ScrollView
<ActivityIndicator size="large" color="black" style={styles.loading} /> with
Styles.js
loading: {
position: "absolute",
zIndex: 10000,
top: 0,
bottom: 0,
right: 0,
left: 0,
// backgroundColor: "rgba(0, 0, 0, 0.25)",
}

you need to use ....
and LayoutStyle.js like
hope it's working I think