Expo: not loading assets on AppLoadingWhat is the difference between Expo and React Native?Can't load expo app: Something went wrongOnly one callback may be registered. Shows this error for Expo ApploadReact Native AppLoading - how to stay on loading screen till local JSON file is fully imported?React Native Expo Not Loading FontsCache full images folder on apploading (React Native Expo)expo v29 not loading assets in ios release buildBrowsers completely Freeze while Remote JS Debugging 'expo'How do I launch the RN Expo Camera in fullscreen from TouchableOpacity press?
What exactly is a "murder hobo"?
Publishing papers seem natural to many, while I find it really hard to think novel stuff to pursue till publication. How to cope up with this?
How does one acquire an undead eyeball encased in a gem?
Found and corrected a mistake on someone's else paper -- praxis?
Can a landlord force all residents to use the landlord's in-house debit card accounts?
Password Hashing Security Using Scrypt & Argon2
Strong Password Detection in Python
How do I separate enchants from items?
Is there a formal/better word than "skyrocket" for the given context?
Sum of even numbers N?
What could cause the sea level to massively decrease?
Shrinking padding of node with label options
Can a UA Lore Mastery wizard use the Spell Secrets or Alchemical Casting features to modify spells cast through wands or staffs?
Is it ok for parents to kiss and romance with each other while their 2- to 8-year-old child watches?
Why did Dumbledore ignore this line?
How many Jimmys can fit?
What does the multimeter dial do internally?
How do you correct inclination at launch to ISS?
Is there a method for differentiating informative comments from commented out code?
Did depressed people far more accurately estimate how many monsters they killed in a video game?
How should I ask for a "pint" in countries that use metric?
Writing an ace/aro character?
zoom set to 4 but on get zoom shows zero ,OpenLayers
Non-Chromatic Orchestral Instruments?
Expo: not loading assets on AppLoading
What is the difference between Expo and React Native?Can't load expo app: Something went wrongOnly one callback may be registered. Shows this error for Expo ApploadReact Native AppLoading - how to stay on loading screen till local JSON file is fully imported?React Native Expo Not Loading FontsCache full images folder on apploading (React Native Expo)expo v29 not loading assets in ios release buildBrowsers completely Freeze while Remote JS Debugging 'expo'How do I launch the RN Expo Camera in fullscreen from TouchableOpacity press?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
Update: I build the app shortly after asking the question and found out that there is no slow loading in the app in production.
I will let the question stay, so some hopefully can benefit from my findings - that there is a big difference in performance between an Expo an a standalone app....
When my Expo app starts, the icons load slowly on Android (I have not tried on iOS). I try to use AppLoading to cache the icons, but nothing happens. The icons still show later than the rest of the components on the home screen (1-4 seconds).
Have I misunderstood how AppLoading and Font.loadAsync work? Aren't they supposed to load on the first run and then subsequent reloads will render the icons immediately?
I have asked google and followed Expo' Preloading & Caching Assets and the full working example, but nothing seem to happen.
Following Expo's "Preloading and caching Assets":
async _loadAssetsAsync()
const imageAssets = cacheImages([
require("./assets/logo.png"),
require("./assets/logoText.png"),
]);
const fontAssets = cacheFonts([
Ionicons.font,
FontAwesome.font,
MaterialCommunityIcons.font,
]);
await Promise.all([...imageAssets, ...fontAssets]);
I have also tried requires: require("@expo/vector-icons/fonts/Ionicons.ttf")and ...Icon.Ionicons.font in the same example.
Am I missing something completely obvious like only works in production or can anyone tell me what I am doing wrong?
expo
add a comment |
Update: I build the app shortly after asking the question and found out that there is no slow loading in the app in production.
I will let the question stay, so some hopefully can benefit from my findings - that there is a big difference in performance between an Expo an a standalone app....
When my Expo app starts, the icons load slowly on Android (I have not tried on iOS). I try to use AppLoading to cache the icons, but nothing happens. The icons still show later than the rest of the components on the home screen (1-4 seconds).
Have I misunderstood how AppLoading and Font.loadAsync work? Aren't they supposed to load on the first run and then subsequent reloads will render the icons immediately?
I have asked google and followed Expo' Preloading & Caching Assets and the full working example, but nothing seem to happen.
Following Expo's "Preloading and caching Assets":
async _loadAssetsAsync()
const imageAssets = cacheImages([
require("./assets/logo.png"),
require("./assets/logoText.png"),
]);
const fontAssets = cacheFonts([
Ionicons.font,
FontAwesome.font,
MaterialCommunityIcons.font,
]);
await Promise.all([...imageAssets, ...fontAssets]);
I have also tried requires: require("@expo/vector-icons/fonts/Ionicons.ttf")and ...Icon.Ionicons.font in the same example.
Am I missing something completely obvious like only works in production or can anyone tell me what I am doing wrong?
expo
Can you provide more information on what you mean when you say the "icons load slowly"? Is it in the order of 100ms delay, or 2 seconds, or more? Is this on iOS or Android? Can you provide repository that I can clone and try this in to verify for myself? I cannot reproduce any 'slow loading' by initializing a new project withexpo initand choosing the tabs template, all of the icons load instantly.
– brentvatne
Mar 25 at 23:43
It seems to work in the built apk so I have updated the question. I still have the issue when using the Expo SDK though. The slow loading is up to four seconds and I have only tried in on Android. I have tried to make a reproducible project, but the icons load a lot faster there so my guess is that I have an old phone and/or my code is not performant enough. Right now I am using three font types. Is it better to stick with one performance-wise or doesn't it make a noticable difference?
– Kikkomann
Mar 26 at 10:19
add a comment |
Update: I build the app shortly after asking the question and found out that there is no slow loading in the app in production.
I will let the question stay, so some hopefully can benefit from my findings - that there is a big difference in performance between an Expo an a standalone app....
When my Expo app starts, the icons load slowly on Android (I have not tried on iOS). I try to use AppLoading to cache the icons, but nothing happens. The icons still show later than the rest of the components on the home screen (1-4 seconds).
Have I misunderstood how AppLoading and Font.loadAsync work? Aren't they supposed to load on the first run and then subsequent reloads will render the icons immediately?
I have asked google and followed Expo' Preloading & Caching Assets and the full working example, but nothing seem to happen.
Following Expo's "Preloading and caching Assets":
async _loadAssetsAsync()
const imageAssets = cacheImages([
require("./assets/logo.png"),
require("./assets/logoText.png"),
]);
const fontAssets = cacheFonts([
Ionicons.font,
FontAwesome.font,
MaterialCommunityIcons.font,
]);
await Promise.all([...imageAssets, ...fontAssets]);
I have also tried requires: require("@expo/vector-icons/fonts/Ionicons.ttf")and ...Icon.Ionicons.font in the same example.
Am I missing something completely obvious like only works in production or can anyone tell me what I am doing wrong?
expo
Update: I build the app shortly after asking the question and found out that there is no slow loading in the app in production.
I will let the question stay, so some hopefully can benefit from my findings - that there is a big difference in performance between an Expo an a standalone app....
When my Expo app starts, the icons load slowly on Android (I have not tried on iOS). I try to use AppLoading to cache the icons, but nothing happens. The icons still show later than the rest of the components on the home screen (1-4 seconds).
Have I misunderstood how AppLoading and Font.loadAsync work? Aren't they supposed to load on the first run and then subsequent reloads will render the icons immediately?
I have asked google and followed Expo' Preloading & Caching Assets and the full working example, but nothing seem to happen.
Following Expo's "Preloading and caching Assets":
async _loadAssetsAsync()
const imageAssets = cacheImages([
require("./assets/logo.png"),
require("./assets/logoText.png"),
]);
const fontAssets = cacheFonts([
Ionicons.font,
FontAwesome.font,
MaterialCommunityIcons.font,
]);
await Promise.all([...imageAssets, ...fontAssets]);
I have also tried requires: require("@expo/vector-icons/fonts/Ionicons.ttf")and ...Icon.Ionicons.font in the same example.
Am I missing something completely obvious like only works in production or can anyone tell me what I am doing wrong?
expo
expo
edited Mar 26 at 7:48
Kikkomann
asked Mar 25 at 22:45
KikkomannKikkomann
669 bronze badges
669 bronze badges
Can you provide more information on what you mean when you say the "icons load slowly"? Is it in the order of 100ms delay, or 2 seconds, or more? Is this on iOS or Android? Can you provide repository that I can clone and try this in to verify for myself? I cannot reproduce any 'slow loading' by initializing a new project withexpo initand choosing the tabs template, all of the icons load instantly.
– brentvatne
Mar 25 at 23:43
It seems to work in the built apk so I have updated the question. I still have the issue when using the Expo SDK though. The slow loading is up to four seconds and I have only tried in on Android. I have tried to make a reproducible project, but the icons load a lot faster there so my guess is that I have an old phone and/or my code is not performant enough. Right now I am using three font types. Is it better to stick with one performance-wise or doesn't it make a noticable difference?
– Kikkomann
Mar 26 at 10:19
add a comment |
Can you provide more information on what you mean when you say the "icons load slowly"? Is it in the order of 100ms delay, or 2 seconds, or more? Is this on iOS or Android? Can you provide repository that I can clone and try this in to verify for myself? I cannot reproduce any 'slow loading' by initializing a new project withexpo initand choosing the tabs template, all of the icons load instantly.
– brentvatne
Mar 25 at 23:43
It seems to work in the built apk so I have updated the question. I still have the issue when using the Expo SDK though. The slow loading is up to four seconds and I have only tried in on Android. I have tried to make a reproducible project, but the icons load a lot faster there so my guess is that I have an old phone and/or my code is not performant enough. Right now I am using three font types. Is it better to stick with one performance-wise or doesn't it make a noticable difference?
– Kikkomann
Mar 26 at 10:19
Can you provide more information on what you mean when you say the "icons load slowly"? Is it in the order of 100ms delay, or 2 seconds, or more? Is this on iOS or Android? Can you provide repository that I can clone and try this in to verify for myself? I cannot reproduce any 'slow loading' by initializing a new project with
expo init and choosing the tabs template, all of the icons load instantly.– brentvatne
Mar 25 at 23:43
Can you provide more information on what you mean when you say the "icons load slowly"? Is it in the order of 100ms delay, or 2 seconds, or more? Is this on iOS or Android? Can you provide repository that I can clone and try this in to verify for myself? I cannot reproduce any 'slow loading' by initializing a new project with
expo init and choosing the tabs template, all of the icons load instantly.– brentvatne
Mar 25 at 23:43
It seems to work in the built apk so I have updated the question. I still have the issue when using the Expo SDK though. The slow loading is up to four seconds and I have only tried in on Android. I have tried to make a reproducible project, but the icons load a lot faster there so my guess is that I have an old phone and/or my code is not performant enough. Right now I am using three font types. Is it better to stick with one performance-wise or doesn't it make a noticable difference?
– Kikkomann
Mar 26 at 10:19
It seems to work in the built apk so I have updated the question. I still have the issue when using the Expo SDK though. The slow loading is up to four seconds and I have only tried in on Android. I have tried to make a reproducible project, but the icons load a lot faster there so my guess is that I have an old phone and/or my code is not performant enough. Right now I am using three font types. Is it better to stick with one performance-wise or doesn't it make a noticable difference?
– Kikkomann
Mar 26 at 10:19
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55347461%2fexpo-not-loading-assets-on-apploading%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55347461%2fexpo-not-loading-assets-on-apploading%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Can you provide more information on what you mean when you say the "icons load slowly"? Is it in the order of 100ms delay, or 2 seconds, or more? Is this on iOS or Android? Can you provide repository that I can clone and try this in to verify for myself? I cannot reproduce any 'slow loading' by initializing a new project with
expo initand choosing the tabs template, all of the icons load instantly.– brentvatne
Mar 25 at 23:43
It seems to work in the built apk so I have updated the question. I still have the issue when using the Expo SDK though. The slow loading is up to four seconds and I have only tried in on Android. I have tried to make a reproducible project, but the icons load a lot faster there so my guess is that I have an old phone and/or my code is not performant enough. Right now I am using three font types. Is it better to stick with one performance-wise or doesn't it make a noticable difference?
– Kikkomann
Mar 26 at 10:19