Monitoring water level indicator using mobile app

I’m trying to make an app for monitoring water level using flutter on android studio (hedge hog).
What I understand is that the work I am doing lies in an IoT category.
I have made an UI for water level indicator. I also know about blynk app. Point is I want to make an app just like blynk that resembles my UI that I made, so that I can monitor water level. I have also done work on esp module. i have controlled Leds and relays using Esp module.
The UI of mobile app has different features, but what I want to achieve is how to recieve/send data between esp and mobile app.
One thing I know that I have to use an app like blynk app, but I don’t understand how to make.

what I understand is listed below:
Basic knowledge of Flutter so that I can make a UI.
Understanding of Esp module to control Leds and relays

Following is my code of UI

import 'package:flutter/material.dart';

class RowWithTwoColumns extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
          body: Container(
            child: Row(
              mainAxisAlignment: MainAxisAlignment.spaceAround,
              children: [
                Column(
                  mainAxisAlignment: MainAxisAlignment.start,
                  children: [
                    Transform.translate(
                      offset: const Offset(20, 40),
                      child:
                          //Image.asset('assets/images/blue_1.png',width: 30,),),
                          Image.asset(
                            'assets/images/blue_1.png',
                            width: 30,
                          ),
                    ),
                    Transform.translate(
                      offset: const Offset(20, 80),
                      child: Image.asset(
                        'assets/images/green.png',
                        width: 30,
                      ),
                    ),
                    Transform.translate(
                      offset: const Offset(20, 120),
                      child: Image.asset(
                        'assets/images/green.png',
                        width: 30,
                      ),
                    ),
                    Transform.translate(
                      offset: const Offset(20, 160),
                      child: Image.asset(
                        'assets/images/green.png',
                        width: 30,
                      ),
                    ),
                    Transform.translate(
                      offset: const Offset(20, 200),
                      child: Image.asset(
                        'assets/images/red_1.png',
                        width: 30,
                      ),
                    ),
                    Transform.translate(
                      offset: const Offset(20, 240),
                      child: Image.asset(
                        'assets/images/red_1.png',
                        width: 30,
                      ),
                    ),
                    Transform.translate(
                      offset: const Offset(20, 280),
                      child: Image.asset(
                        'assets/images/red_1.png',
                        width: 30,
                      ),
                    ),
                    Transform.translate(
                      offset: const Offset(20, 300),
                      child: Text(
                        'WATERnLEVEL',
                        textAlign: TextAlign.center,
                      ),
                    ),
                  ],
                ),
                Column(
                  mainAxisAlignment: MainAxisAlignment.start,
                  children: [
                    Transform.translate(
                      offset: const Offset(20, 40),
                      child: Text(
                        '100 %',
                        style: TextStyle(fontSize: 20),
                      ),
                    ),
                    Transform.translate(
                      offset: const Offset(20, 80),
                      child: Text(
                        '90 %',
                        style: TextStyle(fontSize: 20),
                      ),
                    ),
                    Transform.translate(
                      offset: const Offset(20, 123),
                      child: Text(
                        '75 %',
                        style: TextStyle(fontSize: 20),
                      ),
                    ),
                    Transform.translate(
                      offset: const Offset(20, 163),
                      child: Text(
                        '60 %',
                        style: TextStyle(fontSize: 20),
                      ),
                    ),
                    Transform.translate(
                      offset: const Offset(20, 204),
                      child: Text(
                        '45 %',
                        style: TextStyle(fontSize: 20),
                      ),
                    ),
                    Transform.translate(
                      offset: const Offset(20, 243),
                      child: Text(
                        '30 %',
                        style: TextStyle(fontSize: 20),
                      ),
                    ),
                    Transform.translate(
                      offset: const Offset(20, 285),
                      child: Text(
                        '15 %',
                        style: TextStyle(fontSize: 20),
                      ),
                    ),
                  ],
                ),
                Column(mainAxisAlignment: MainAxisAlignment.start, children: [
                  Transform.translate(
                    offset: const Offset(0, 32),
                    child: SwitchScreen(),
                  ),
                  Transform.translate(
                    offset: const Offset(0, 55),
                    child: SwitchScreen(),
                  ),
                  Transform.translate(
                    offset: const Offset(0, 75),
                    child: SwitchScreen(),
                  ),
                  Transform.translate(
                    offset: const Offset(0, 98),
                    child: SwitchScreen(),
                  ),
                  Transform.translate(
                    offset: const Offset(0, 120),
                    child: SwitchScreen(),
                  ),
                  Transform.translate(
                    offset: const Offset(0, 137),
                    child: SwitchScreen(),
                  ),
                  Transform.translate(
                    offset: const Offset(0, 162),
                    child: SwitchScreen(),
                  ),
                  Transform.translate(
                    offset: const Offset(0, 175),
                    child: Text(
                      'ON n NOTIFY',
                      textAlign: TextAlign.center,
                    ),
                  ),
                ]),
                Column(mainAxisAlignment: MainAxisAlignment.start, children: [
                  Transform.translate(
                    offset: const Offset(0, 32),
                    child: SwitchScreen(),
                  ),
                  Transform.translate(
                    offset: const Offset(0, 55),
                    child: SwitchScreen(),
                  ),
                  Transform.translate(
                    offset: const Offset(0, 75),
                    child: SwitchScreen(),
                  ),
                  Transform.translate(
                    offset: const Offset(0, 98),
                    child: SwitchScreen(),
                  ),
                  Transform.translate(
                    offset: const Offset(0, 120),
                    child: SwitchScreen(),
                  ),
                  Transform.translate(
                    offset: const Offset(0, 137),
                    child: SwitchScreen(),
                  ),
                  Transform.translate(
                    offset: const Offset(0, 162),
                    child: SwitchScreen(),
                  ),
                  Transform.translate(
                    offset: const Offset(0, 175),
                    child: Text(
                      'OFF n NOTIFY',
                      textAlign: TextAlign.center,
                    ),
                  ),
                ]),
              ],
            ),
          ),
          appBar: AppBar(
            title: Text(
              'Water Level Indicator',
              style: TextStyle(color: Colors.white),
            ),
            backgroundColor: Colors.blueAccent,
            centerTitle: true,
          )),
    );
  }
}

class SwitchScreen extends StatefulWidget {
  @override
  SwitchClass createState() => new SwitchClass();
}
class SwitchClass extends State {
  bool isSwitched = false;

  void toggleSwitch(bool value) {
    if (isSwitched == false) {
      setState(() {
        isSwitched = true;
      });
    } else {
      setState(() {
        isSwitched = false;
      });
    }
  }
  @override
  Widget build(BuildContext context) {
    return Column(mainAxisAlignment: MainAxisAlignment.center, children: [
      Transform.scale(
          scale: 1,
          child: Switch(
            onChanged: toggleSwitch,
            value: isSwitched,
          )),
    ]);
  }
}

I’m attaching image of my UI
Water level Indicator UI

I have tried to get an idea of creating alternative of blynk app using different platforms including the following tutorial whose link I’m sharing but since I’m beginner in esp and cloud that’s why I found it difficult to grasp.
https://www.instructables.com/Build-Your-Own-IoT-Platform-Using-Nodejs-and-ESP82/

If any of the respected member could give me a line of action so I would be glad

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật