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