// @flow import * as React from 'react'; import {View} from 'react-native'; import {ActivityIndicator, withTheme} from 'react-native-paper'; import type {CustomThemeType} from '../../managers/ThemeManager'; /** * Component used to display a header button * * @param props Props to pass to the component * @return {*} */ function BasicLoadingScreen(props: { theme: CustomThemeType, isAbsolute: boolean, }): React.Node { const {theme, isAbsolute} = props; const {colors} = theme; let position; if (isAbsolute != null && isAbsolute) position = 'absolute'; return ( ); } export default withTheme(BasicLoadingScreen);