A Flutter-based personality quiz application that determines your personality type through three fun questions.
- Three-question personality assessment (favorite color, food, and superhero)
- Score-based personality categorization
- Quiz restart functionality
- Cross-platform support (Android, iOS, Windows)
- Flutter SDK installed
- Dart SDK (>=2.16.2 <3.0.0)
- Clone the repository
- Install dependencies:
flutter pub get
- Run the app:
flutter run
Users answer three questions, each answer contributing to a cumulative score. Based on the final score, the app displays one of four personality results:
| Score Range | Personality |
|---|---|
| 0-8 | "You're innocent!" |
| 9-12 | "Pretty Likable" |
| 13-16 | "You're...strange!!" |
| 17+ | "You're so bad!!" |
lib/
├── main.dart # App entry point and state management
├── quiz.dart # Quiz container widget
├── questionsfile.dart # Question display widget
├── answersfile.dart # Answer button widget
└── result.dart # Result screen widget
# Android APK
flutter build apk
# Android App Bundle
flutter build appbundle
# iOS
flutter build iosFor detailed technical documentation including architecture, component deep-dives, and modification guides, see TECHNICAL.md.
This project is for educational purposes.