43 items
Expo App Entry Component Bug
Code QuizExpo Managed Workflow Basics
QuizManaged vs Bare Workflow
QuizOTA Updates Concept
QuizMetro Bundler Basics
Quizapp.json Configuration
QuizCreating a New Project
QuizExpo Go App
QuizEAS Overview
QuizProject Directory Structure
QuizExpo SDK Modules
QuizRunning with QR Code
QuizExpo CLI Role
QuizWhy Use Expo
QuizFast Refresh
QuizExpo and React Native
QuizCross-Platform Support
QuizWhen to Choose Expo vs React Native
Slides / VideoPrerequisites Before Starting Expo
Slides / VideoDev Server and QR Code Workflow
Slides / VideoExpo Go: Run Projects on Devices
Slides / VideoExpo CLI: Your Command Center
Slides / VideoThe Expo SDK and Its Role
Slides / VideoManaged vs Bare Workflow Overview
Slides / VideoCross-Platform Support
FlashcardManaged vs Bare Workflow
FlashcardExpo CLI
FlashcardEAS Overview
FlashcardExpo and React Native
FlashcardCreating an Expo Project
FlashcardPrerequisites and Environment
FlashcardExpo SDK
FlashcardOver-the-Air Updates
FlashcardFast Refresh
FlashcardProblems Expo Solves
FlashcardAdvantages and Limitations
FlashcardWhat Expo Is
FlashcardMetro Bundler
Flashcardapp.json Configuration
FlashcardExpo Go App
FlashcardOne Codebase, Three Platforms
Slides / VideoWhy Use Expo for Mobile Development
Slides / VideoWhat Expo Is vs React Native
Slides / VideoExpo App Entry Component Bug
Spot why this basic Expo managed-workflow screen fails to render.
import { Text, View } from 'react-native';
function App() {
return (
<View style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>
<Text>Hello Expo!</Text>
</View>
);
}This is App.js in an Expo managed project, but nothing renders. What is the bug?