This repository has been archived on 2025-07-31. You can view files and clone it, but cannot push or open issues or pull requests.
Files
terminally-online/src/components/loadingView.tsx
2023-07-13 19:03:53 +03:00

17 lines
369 B
TypeScript

import React from 'react';
import { ActivityIndicator } from 'react-native';
import { useTheme } from 'react-native-paper';
import { RootView } from '.';
const LoadingView = () => {
const { colors } = useTheme();
return (
<RootView centered>
<ActivityIndicator size="large" color={colors.primary} />
</RootView>
);
};
export default LoadingView;