Home
last modified time | relevance | path

Searched refs:LoadingView (Results 1 – 16 of 16) sorted by relevance

/expo/packages/@expo/metro-runtime/build/
H A DLoadingView.native.js.map1LoadingView.native.js","sourceRoot":"","sources":["../src/LoadingView.native.ts"],"names":[],"mapp…
H A DLoadingView.native.d.ts1 import LoadingView from 'react-native/Libraries/Utilities/LoadingView';
2 export default LoadingView;
H A DLoadingView.native.d.ts.map1 {"version":3,"file":"LoadingView.native.d.ts","sourceRoot":"","sources":["../src/LoadingView.native…
H A DLoadingView.d.ts.map1 {"version":3,"file":"LoadingView.d.ts","sourceRoot":"","sources":["../src/LoadingView.ts"],"names":…
H A DLoadingView.js.map1 {"version":3,"file":"LoadingView.js","sourceRoot":"","sources":["../src/LoadingView.ts"],"names":[]…
H A DHMRClient.js.map1LoadingView from './LoadingView';\nimport LogBox from './error-overlay/LogBox';\nimport getDevServ…
/expo/packages/@expo/metro-runtime/src/async-require/__tests__/
H A DloadBundle.test.ios.ts2 import LoadingView from '../../LoadingView';
42 expect(LoadingView.showMessage).toBeCalledWith('Downloading...', 'load');
43 expect(LoadingView.hide).toBeCalledWith();
58 expect(LoadingView.showMessage).not.toBeCalled();
59 expect(LoadingView.hide).not.toBeCalled();
72 expect(LoadingView.showMessage).not.toBeCalled();
73 expect(LoadingView.hide).not.toBeCalled();
H A DloadBundle.test.web.ts2 import LoadingView from '../../LoadingView';
25 expect(LoadingView.showMessage).toBeCalledWith('Downloading...', 'load');
26 expect(LoadingView.hide).toBeCalledWith();
34 expect(LoadingView.showMessage).not.toBeCalled();
35 expect(LoadingView.hide).not.toBeCalled();
/expo/packages/@expo/metro-runtime/src/async-require/
H A DloadBundle.ts24 const LoadingView = require('../LoadingView') constant
28 LoadingView.showMessage('Downloading...', 'load');
42 LoadingView.hide();
/expo/packages/@expo/metro-runtime/build/async-require/
H A DloadBundle.js25 const LoadingView = require('../LoadingView')
28 LoadingView.showMessage('Downloading...', 'load');
40 LoadingView.hide();
H A DloadBundle.js.map1LoadingView from '../LoadingView';\n\nlet pendingRequests = 0;\n\n/**\n * Load a bundle for a URL …
/expo/packages/@expo/metro-runtime/src/
H A DLoadingView.native.ts1 import LoadingView from 'react-native/Libraries/Utilities/LoadingView';
3 export default LoadingView;
H A DHMRClient.ts13 import LoadingView from './LoadingView';
82 LoadingView.showMessage('Refreshing...', 'refresh');
88 LoadingView.hide();
179 LoadingView.showMessage('Refreshing...', 'refresh');
191 LoadingView.hide();
195 LoadingView.hide();
212 LoadingView.hide();
/expo/android/expoview/src/main/java/host/exp/exponent/experience/splashscreen/
H A DLoadingView.kt19 class LoadingView @JvmOverloads constructor( class
/expo/android/expoview/src/main/java/host/exp/exponent/experience/
H A DReactNativeActivity.kt33 import host.exp.exponent.experience.splashscreen.LoadingView in <lambda>()
103 private var loadingView: LoadingView? = null in <lambda>()
130 loadingView = LoadingView(this) in <lambda>()
/expo/docs/pages/modules/
H A Dnative-view-tutorial.mdx462 <LoadingView isLoading={isLoading} />
468 function LoadingView({ isLoading }: { isLoading: boolean }) {