Front: Pull Migration to Native Base

This commit is contained in:
Arthi-chaud
2022-10-07 09:47:30 +01:00
76 changed files with 1569 additions and 363 deletions
+3 -1
View File
@@ -1,6 +1,8 @@
import { useTheme } from "native-base";
import { ActivityIndicator } from "react-native-paper";
const LoadingComponent = () => {
return <ActivityIndicator />
const theme = useTheme();
return <ActivityIndicator color={theme.colors.primary[500]}/>
}
export default LoadingComponent;