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