Flutter_Interview_Questions_Complete_Expanded
Flutter_Interview_Questions_Complete_Expanded
1. **What is Flutter?**
Dart is the programming language used by Flutter. It is optimized for front-end development,
offering features like a sound type system, ahead-of-time (AOT) compilation, and garbage collection.
- **Dart Runtime & Engine**: Handles rendering, gestures, and platform communication
- **StatelessWidget**: A widget that does not change its state once built.
- **StatefulWidget**: A widget that can change its state dynamically based on user interaction or
other changes.