This repository contains multiple Flutter practice projects.
A simple counter app with increment, decrement, and reset buttons.
A counter app that displays whether the current number is odd or even.
To run any project:
- Open the project folder in VS Code.
- Run
flutter pub getto install dependencies. - Run the app on an emulator or physical device with
flutter run.
A beginner-friendly chat list app demonstrating:
- A scrollable chat list with images and messages using
ListViewandListTile - Navigation between screens using
Navigator.pushReplacement - An
ElevatedButtonto move from Second Screen to Third Screen - Returning back to the previous screen using
Navigator.pop()