mirror of
https://github.com/nisrulz/flutter-examples.git
synced 2025-11-09 13:09:03 +00:00
BMI calculator example (#130)
This commit is contained in:
9
bmi_calculator/lib/bmi_calculator.dart
Normal file
9
bmi_calculator/lib/bmi_calculator.dart
Normal file
@@ -0,0 +1,9 @@
|
||||
import 'dart:math';
|
||||
|
||||
import 'package:bmi_calculator/body_model.dart';
|
||||
|
||||
// I've used weight/height^2 (kg/m^2)
|
||||
// You can expand this logic
|
||||
double calculateBMI({required BodyModel bodyModel}) {
|
||||
return (bodyModel.weight) / pow(bodyModel.height / 100, 2);
|
||||
}
|
||||
Reference in New Issue
Block a user