A simple Flutter starter project created to learn the basics of Flutter application development.
hello_flutter is my first Flutter project.
The app displays a greeting message ("Hello, KingFillari!") and updates
the text when a button is clicked.
This project focuses on understanding Flutter fundamentals and UI interaction.
The hello_flutter app demonstrates:
- Flutter project structure
- Stateful widgets
- Updating UI using
setState() - Basic layout using
ColumnandCenter - Button click interaction
- Flutter
- Dart
- VS Code
- Chrome (Web)
- The app starts with the message:
"Hello, KingFillari!" - When the "Click Me" button is pressed:
- The text changes to:
"You clicked the button!"
- The text changes to:
- Check Flutter installation:
flutter doctor
Navigate to the project folder:
bash
cd hello_flutter
flutter run -d chrome
Difference between StatelessWidget and StatefulWidget
Using setState() to update the UI
Building simple UI layouts in Flutter
Handling button click events
Improve UI design
Add more buttons and interactions
Convert the app to a multi-screen application
Run the app on Android devices
KingFillari Aspiring Mobile Application Developer 🚀