Skip to main content

BMI CALCULATOR USING FLUTTER || FLUTTER IMPLEMENTATION

 

A Body Mass Index (BMI) calculator is an application that helps determine an individual's body weight status based on their height and weight. Here is an example implementation of a BMI calculator using Flutter:

 

import 'package:flutter/material.dart';

 

void main() {

  runApp(const MyApp());

}

 

class MyApp extends StatelessWidget{

  const MyApp({Key? key}) : super(key: key);

 

  @override

  Widget build(BuildContext context){

    return MaterialApp(

      title: 'Flutter Demo',

      debugShowCheckedModeBanner: false,

      theme: ThemeData(

        primarySwatch: Colors.cyan,

      ),

      home: const MyHomePage(),

    );

  }

}

 

class MyHomePage extends StatefulWidget {

  const MyHomePage({Key? key}) : super(key: key);

 

  @override

  State<MyHomePage> createState() => _MyHomePageState();

}

 

class _MyHomePageState extends State<MyHomePage> {

 

  var wtController = TextEditingController();

  var ftController = TextEditingController();

  var inController = TextEditingController();

  var result = "";

 

  @override

  Widget build(BuildContext context) {

 

    return Scaffold(

      appBar: AppBar(

 

        title: Text('BMI Calculator'),

      ),

      body: Center(

        child: Container(

          width: 300,

          child: Column(

            mainAxisAlignment: MainAxisAlignment.center,

            children: [

              Text('BMI', style:TextStyle(

                fontSize: 34, fontWeight: FontWeight.w700

              ),),

 

              SizedBox(height: 21,),

 

              TextField(

                controller: wtController,

                decoration: InputDecoration(

                  label: Text('Weight (in kg)'),

                  prefixIcon: Icon(Icons.line_weight),

                ),

                keyboardType: TextInputType.number,

              ),

 

              SizedBox(height: 11,),

 

              TextField(

                controller: ftController,

                decoration: InputDecoration(

                  label: Text('Height in feet'),

                  prefixIcon: Icon(Icons.height),

                ),

                keyboardType: TextInputType.number,

              ),

 

              SizedBox(height: 11,),

 

              TextField(

                controller: inController,

                decoration: InputDecoration(

                  label: Text('Height in inches'),

                  prefixIcon: Icon(Icons.height),

                ),

                keyboardType: TextInputType.number,

              ),

 

              SizedBox(height: 21,),

 

              ElevatedButton(onPressed: (){

 

                var wt = wtController.text.toString();

                var ft = ftController.text.toString();

                var inch = inController.text.toString();

 

                if(wt !="" && ft!="" && inch !=""){

 

                  var iwt = int.parse(wt);

                  var ift = int.parse(ft);

                  var iinch = int.parse(inch);

 

                  var tinch = (ift * 12) + iinch;

                  var tcm = tinch * 2.54;

                  var tm = tcm / 100;

 

                  var bmi = iwt/(tm * tm);

 

                  var msg = "";

 

                  if(bmi>25){

                    msg = "You are Over Weight :(";

                  }else if(bmi<18){

                    msg = "You are Underweight :(";

                  }else{

                    msg = "You are Healthy :)";

                  }

 

                  setState(() {

                    result = "$msg \n Your BMI is: ${bmi.toStringAsFixed(2)} ";

                  });

                }else{

                  setState((){

                    result = "All Fields Required!!";

                  });

 

                }

              },

 

 

                  child:Text('Calculate')),

 

              SizedBox(height:11,),

 

              Text(result, style: TextStyle(fontSize: 19),),

 

            ],

          ),

        ),

      )

    );

  }

}

 

 




Comments

Popular posts from this blog

The Attack Of 9/11

Once upon a time, in the early hours of a September morning in 2001, the city of New York buzzed with life, unaware that darkness was about to descend upon its skies. Four airplanes, carrying innocent passengers and dreams, embarked on routine journeys that would be forever altered by a sinister plan. High above, in the cockpit of American Airlines Flight 11, sat Mohamed Atta, a pawn in the hands of a man named Khalid Sheikh Mohammed. Little did the passengers know that this flight, and another, United Airlines Flight 175, were instruments in a plot conceived by Khalid Sheikh Mohammed, the mastermind behind the impending tragedy. At 8:46 a.m., the city's skyline was shattered as Flight 11 crashed into the North Tower of the World Trade Center. Panic gripped the streets, but before the shock could settle, another blow struck at 9:03 a.m. - Flight 175 crashed into the South Tower. The Twin Towers, symbols of prosperity, crumbled before the eyes of a horrified nation. Meanwhile, in Wa

Web Based Technologies and Multimedia Applications || NPTEL WEEK 1 ASSIGNMENT SOLUTIONS

1.) The following are different ways of sharing information through Internet   Posting to Social Network   Uploading to cloud storage such as Google Drive   Sending through a mailing list   All of the above Answer: All of the above  2.) The following is a website where entries are written as commentary or news on a particular subject such as food, politics, or local news   Blog   Twitter   Instagram   None of the above Answer: Blog 3.) FTP stands for   Food Transfer Programme   File Transfer Protocol   File Transfer Programming   Facebook To Python Answer: File Transfer Protocol 4.) The following enables access to computing resources remotely   FTP   VPN   Blog   Twitter Answer: VPN 5.) The following allows an Internet host Computer to become a terminal of another host on the Internet   TELNET   Google Groups   Microsoft OneDrive   None of the above Answer: TELNET 6.) To which protocol(s) are all hosts on the ARPANET were switched over from the older ARPANET protocols   UNIX   TCP/IP  

Can Chat GPT Predict About Stock Market

Can ChatGPT predict the stock market? To answer this question, it's crucial to understand how ChatGPT operates. Developed by OpenAI, ChatGPT is an advanced artificial intelligence language model capable of comprehending and responding to natural language input. It engages in human-like conversations with users, having been trained on extensive text data using a deep neural network. Primarily used for applications like chatbots, virtual assistants, and customer service interactions, ChatGPT's versatility allows it to understand and respond to a wide array of topics. The model employs a deep learning architecture known as a transformer model, trained on a substantial corpus of text data. This training enables the model to grasp natural language intricacies and the connections between words and phrases. When a user inputs text, ChatGPT processes it through the transformer model, generating a response based on its understanding of the input text. Techniques such as attention mechan