BEGINNER • Mobile Foundations
Sprint: optimize battery usage #10
This lesson focuses on optimize battery usage for a booking platform app. Commands: expo start | xcrun simctl | npm run android.
Code Example
// SwiftUI
struct ContentView: View {
var body: some View {
VStack {
Text("booking platform")
Text("optimize battery usage")
}
}
}Commands & References
- expo start
- xcrun simctl
- npm run android
Lab Steps
- Run expo start
- Implement feature
- Test on device
- Document findings
Exercises
- Add one validation
- Improve one UX flow
- Write one test