BEGINNER • Mobile Foundations
Mobile Drill for e-commerce app #1
This lesson focuses on improve app performance for a e-commerce app app. Commands: npx create-expo-app | npm run ios | adb logcat.
Code Example
// Flutter widget
class HomeScreen extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: Text("e-commerce app")),
body: Center(child: Text("improve app performance")),
);
}
}Commands & References
- npx create-expo-app
- npm run ios
- adb logcat
Lab Steps
- Run npx create-expo-app
- Implement feature
- Test on device
- Document findings
Exercises
- Add one validation
- Improve one UX flow
- Write one test
No previous lessonNext Lesson