Skip to content
Snippets Groups Projects

loading component works on android

Merged Jorunn Leithe requested to merge bug/loading into master
1 file
+ 4
1
Compare changes
  • Side-by-side
  • Inline
@@ -8,13 +8,16 @@ export const Loader = () => {
@@ -8,13 +8,16 @@ export const Loader = () => {
return (
return (
<View
<View
style={{
style={{
 
flex: 1,
 
justifyContent: "center",
 
alignItems: "center",
position: "relative",
position: "relative",
width: "100%",
width: "100%",
paddingVertical: 20,
paddingVertical: 20,
marginBottom: 10
marginBottom: 10
}}
}}
>
>
<ActivityIndicator animating size="large" />
<ActivityIndicator animating size="large" color="#999999" />
</View>
</View>
);
);
};
};
Loading