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