An open API service indexing awesome lists of open source software.

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.

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

Main Image

Image 1: Main Screen

#### The result is obtained using the following formula:
- Weight / (Height / 100) ^ 2

After pressing calculate you will be taken to a page displaying your BMI result, as shown in next image


Result Image

Image 2: Result Screen