12345678910111213141516171819202122 |
-
- // @flow
-
- import { Image } from 'react-native';
-
- import { isIconUrl } from './functions';
-
- /**
- * Tries to preload an image.
- *
- * @param {string | Object} src - Source of the avatar.
- * @returns {Promise}
- */
- export function preloadImage(src: string | Object): Promise<string> {
- if (isIconUrl(src)) {
- return Promise.resolve(src);
- }
-
- return new Promise((resolve, reject) => {
- Image.prefetch(src).then(() => resolve(src), reject);
- });
- }
|