https://github.com/autokmg/bmi-calculator-built-with-cubit
I coded this project to practice managing the state of the applications using Cubit.
https://github.com/autokmg/bmi-calculator-built-with-cubit
flutter-apps flutter-bloc-sample
Last synced: 3 months ago
JSON representation
I coded this project to practice managing the state of the applications using Cubit.
- Host: GitHub
- URL: https://github.com/autokmg/bmi-calculator-built-with-cubit
- Owner: AutoKMG
- Created: 2022-09-28T13:52:48.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-05-02T20:48:05.000Z (about 2 years ago)
- Last Synced: 2025-02-01T10:25:50.511Z (5 months ago)
- Topics: flutter-apps, flutter-bloc-sample
- Language: Dart
- Homepage:
- Size: 869 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# BMI Calculator
Looks simple application? It is! As the target was getting from managing the state with SetState and StatefulWidgets to handle the state using Cubit.
#### This app is taking four inputs from the user:
- Gender
- Height
- Age
- Weight
Image 1: Main Screen
#### The result is obtained using the following formula:
- Weight / (Height / 100) ^ 2After pressing calculate you will be taken to a page displaying your BMI result, as shown in next image
![]()
Image 2: Result Screen