| /expo/packages/expo-font/src/__tests__/ |
| H A D | Font-test.native.ts | 76 expect(Font.isLoading('test-font')).toBe(false); 91 expect(Font.isLoading('test-font')).toBe(false); 106 expect(Font.isLoading('test-font')).toBe(false); 120 expect(Font.isLoading('test-font')).toBe(false); 128 expect(Font.isLoading('test-font')).toBe(false); 132 expect(Font.isLoading('test-font')).toBe(false); 161 expect(Font.isLoading('test-font')).toBe(true); 166 expect(Font.isLoading('test-font')).toBe(true); 181 expect(Font.isLoading('test-font')).toBe(true); 186 expect(Font.isLoading('test-font')).toBe(true); [all …]
|
| H A D | Font-test.web.ts | 35 expect(Font.isLoading(name)).toBe(false); 54 expect(Font.isLoading(name)).toBe(true); 61 expect(Font.isLoading(name)).toBe(false); 77 expect(Font.isLoading(key)).toBe(false);
|
| /expo/packages/expo-dev-launcher/bundle/screens/ |
| H A D | KitchenSinkScreen.tsx | 15 const [isLoading, setIsLoading] = React.useState(false); 42 <BasicButton label="Load More" isLoading={isLoading} onPress={onLoadMorePress} /> 93 isLoading={isLoading} 105 isLoading={isLoading} 118 isLoading={isLoading}
|
| H A D | BranchesScreen.tsx | 28 isLoading, 62 isLoading={isFetchingNextPage} 75 isLoading={isFetchingNextPage} 116 const isLoading = loadingUpdateId === branch.updates[0]?.id; 123 isLoading={isLoading} 134 isLoading={isLoading}
|
| H A D | ExtensionsScreen.tsx | 39 isLoading, 59 const hasError = error != null && !isLoading; 133 isLoading={isLoading} 200 {isLoading && isAuthenticated && ( 218 isLoading: boolean; 226 isLoading, 310 const isLoading = branch.updates[0]?.id === loadingUpdateId; 319 isLoading={isLoading}
|
| H A D | UserProfileScreen.tsx | 27 const [isLoading, setIsLoading] = React.useState(false); 81 isLoading={isLoading} 118 function LoginSignupCard({ onLoginPress, onSignupPress, isLoading }) { 131 disabled={isLoading} 146 disabled={isLoading} 155 {isLoading && (
|
| H A D | UpdatesScreen.tsx | 40 isLoading, 75 isLoading={isFetchingNextPage} 125 const isLoading = update.id === loadingUpdateId; 133 isLoading={isLoading} 150 isLoading={isLoading}
|
| /expo/docs/ui/components/CommandMenu/ |
| H A D | BarLoader.tsx | 4 type Props = { isLoading?: boolean }; 6 export const BarLoader = ({ isLoading }: Props) => ( 7 <div css={[loaderStyle, isLoading && animationStyle]} />
|
| /expo/packages/expo-dev-launcher/bundle/components/ |
| H A D | EASUpdatesRows.tsx | 30 isLoading?: boolean; 38 isLoading, 42 const loadingStyle = useLoadingContainerStyle(isLoading); 113 {isLoading && ( 188 isLoading?: boolean; 193 const loadingStyle = useLoadingContainerStyle(isLoading); 197 <ListButton disabled={isLoading} isFirst={isFirst} isLast={isLast} onPress={onPress}> 228 {isLoading && ( 237 export function useLoadingContainerStyle(isLoading: boolean = false) { 242 toValue: isLoading ? 1 : 0, [all …]
|
| H A D | BasicButton.tsx | 13 isLoading?: boolean; 33 isLoading, 39 <View opacity={isLoading ? '0.5' : '1'}> 52 {isLoading && (
|
| H A D | FlatList.tsx | 13 isLoading?: boolean; 27 isLoading, 34 if (isLoading) {
|
| H A D | LoadInitialData.tsx | 12 const [isLoading, setIsLoading] = React.useState(true); 22 if (isLoading) {
|
| H A D | UrlDropdown.tsx | 20 isLoading?: boolean; 26 export function UrlDropdown({ onSubmit, isLoading, inputValue, setInputValue }: UrlDropdownProps) { 127 disabled={!isValidUrl || isLoading} 130 <View py="small" opacity={isLoading ? '0.5' : '1'}> 135 {isLoading && (
|
| /expo/home/components/ |
| H A D | PrimaryButton.tsx | 17 isLoading, 23 isLoading?: boolean; 30 {isLoading && ( 40 {isLoading && (
|
| /expo/home/screens/SnacksListScreen/ |
| H A D | SnackList.tsx | 51 const isLoading = React.useRef<null | boolean>(false); 55 if (isLoading.current) return; 56 isLoading.current = true; 63 isLoading.current = false;
|
| /expo/packages/expo-dev-menu/app/components/ |
| H A D | LoadInitialData.tsx | 13 const [isLoading, setIsLoading] = React.useState(true); 21 if (isLoading) {
|
| /expo/home/screens/BranchListScreen/ |
| H A D | BranchListView.tsx | 57 const isLoading = React.useRef<null | boolean>(false); 63 if (isLoading.current) return; 64 isLoading.current = true; 71 isLoading.current = false;
|
| /expo/apps/router-e2e/__e2e__/auth/ |
| H A D | ctx.tsx | 18 const [[isLoading, session], setSession] = useStorageState('session'); 31 isLoading,
|
| /expo/apps/router-e2e/__e2e__/auth/app/(app)/ |
| H A D | _layout.tsx | 6 const { user, isLoading } = useSession(); 8 if (isLoading) {
|
| /expo/home/screens/ProjectsListScreen/ |
| H A D | ProjectList.tsx | 108 const isLoading = React.useRef<null | boolean>(false); 117 if (isLoading.current || !canLoadMore) return; 118 isLoading.current = true; 125 isLoading.current = false;
|
| /expo/packages/expo-font/build/ |
| H A D | Font.d.ts | 24 export declare function isLoading(fontFamily: string): boolean;
|
| H A D | Font.js | 23 if (isLoading(fontFamily)) { 53 export function isLoading(fontFamily) { function
|
| /expo/apps/native-component-list/src/screens/ |
| H A D | WebViewScreen.tsx | 28 const [isLoading, setLoading] = React.useState(true); 41 {isLoading && <ActivityIndicator style={StyleSheet.absoluteFill} />}
|
| /expo/packages/expo-font/src/ |
| H A D | Font.ts | 31 if (isLoading(fontFamily)) { 67 export function isLoading(fontFamily: string): boolean { function
|
| /expo/android/app/src/androidTest/java/host/exp/exponent/utils/ |
| H A D | LoadingScreenIdlingResource.kt | 24 val isIdle = !BaseExperienceActivity.visibleActivity!!.isLoading in isIdleNow()
|