Skip to content
Snippets Groups Projects

added pagination and loading

Merged Jorunn Leithe requested to merge feature/pagination into master
6 files
+ 159
70
Compare changes
  • Side-by-side
  • Inline
Files
6
import React from "react";
import { View, ActivityIndicator } from "react-native";
export const Loader = () => {
return (
<View
style={{
position: "relative",
width: "100%",
paddingVertical: 20,
marginBottom: 10
}}
>
<ActivityIndicator animating size="large" />
</View>
);
};
Loading