import React from 'react'; import { useTheme } from '@react-navigation/native'; import { FunctionComponent } from 'react'; import { Bar } from 'react-native-progress'; interface LoadingBarProps { isLoading: boolean; } export const LoadingBar: FunctionComponent = ({ isLoading, }) => { const { colors } = useTheme(); if (!isLoading) return <>; return ( ); };