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