Comments (2)
I guess the err is because of the font is undefined!
Importing font should solve the problem
await Font.loadAsync(customFonts);
and this should solve the problem
if (this.state.fontsLoaded) {
SplashScreen.hideAsync();
return (
<Image
source={require("../assets/image_1.jpg")}
style={styles.storyImage}
/>
);
} else {
return null;
}
from react.
Support requests filed as GitHub issues often go unanswered. We want you to find the answer you're looking for, so we suggest the following alternatives:
Coding Questions
If you have a coding question related to React and React DOM, it might be better suited for Stack Overflow. It's a great place to browse through frequent questions about using React, as well as ask for help with specific questions.
https://stackoverflow.com/questions/tagged/react
Talk to other React developers
There are many online forums which are a great place for discussion about best practices and application architecture as well as the future of React.
https://reactjs.org/community/support.html
from react.
Related Issues (20)
- Bug: Unable to catch errors In React 18.2.0 version HOT 3
- Bug: `useId` generates a new different ID on second render of Strict Mode before un-mount HOT 5
- Bug: Casting inside useEffect gives false positive on dependency array check. HOT 1
- Bug: Manifest Confusion: react-dom NPM Registry data reports different scripts than current package.json HOT 2
- Bug: Vulnerable dependencies (indirect security issues ??) HOT 1
- [DevTools Bug]: Deprecated __REACT_DEVTOOLS_GLOBAL_HOOK__ ???? HOT 1
- [DevTools Bug]: Deprecated __REACT_DEVTOOLS_GLOBAL_HOOK__ ???? HOT 1
- [DevTools Bug]: Chrome extension gets disconnected from the page after 30sec of inactivity HOT 4
- Bug: Page does not reload when URL link directly changed from broswer tab in first go. HOT 4
- [DevTools Bug] Cannot add node "1" because a node with that id is already in the Store. HOT 4
- Muito bom, mas...
- Bug: "react-dom/client" render function fail on IE10 (with polyfills) HOT 3
- Bug: undefined behavior with input checkbox onChange not triggered HOT 4
- Bug: Text duplication in controlled component with iOS Japanese kana IME HOT 2
- evil.codes.Michel.Michael.is.name illegal 0.0.0 version using signal with unexpected behaviour and results open the evil gate to Matrix God bless all of us HOT 13
- Bug: css Clippath in style property not update HOT 1
- Bug: Android element inspector render error HOT 1
- Bug:
- useDeferredValue hook updates the deferred value immediately instead of after background re-render HOT 1
- Bug: horizontal scroll to bad white space on mobile version of application HOT 3
Recommend Projects
-
React
A declarative, efficient, and flexible JavaScript library for building user interfaces.
-
Vue.js
🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.
-
Typescript
TypeScript is a superset of JavaScript that compiles to clean JavaScript output.
-
TensorFlow
An Open Source Machine Learning Framework for Everyone
-
Django
The Web framework for perfectionists with deadlines.
-
Laravel
A PHP framework for web artisans
-
D3
Bring data to life with SVG, Canvas and HTML. 📊📈🎉
-
Recommend Topics
-
javascript
JavaScript (JS) is a lightweight interpreted programming language with first-class functions.
-
web
Some thing interesting about web. New door for the world.
-
server
A server is a program made to process requests and deliver data to clients.
-
Machine learning
Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.
-
Visualization
Some thing interesting about visualization, use data art
-
Game
Some thing interesting about game, make everyone happy.
Recommend Org
-
Facebook
We are working to build community through open source technology. NB: members must have two-factor auth.
-
Microsoft
Open source projects and samples from Microsoft.
-
Google
Google ❤️ Open Source for everyone.
-
Alibaba
Alibaba Open Source for everyone
-
D3
Data-Driven Documents codes.
-
Tencent
China tencent open source team.
from react.