Text breaks into lines rather than getting smaller in size despite using expanded or flexible

I’m trying to creat a grid which contains elevated buttons. Each button has an icon and text below it. The text varies in length. When the text is too long, part of the word breaks into a new line rather than resizing to a smaller size. When I wrap it with Flexible or Expandable, it doesn’t change.

enter image description here

When I use a bigger screen size, the content of the button doesn’t enlarge.
enter image description here

The whole code:

import 'package:flutter/cupertino.dart';
import 'package:flutter/widgets.dart';
import 'package:pocket_nephrology/hypona_correction.dart';
import 'package:pocket_nephrology/water_deficit.dart';
import 'package:pocket_nephrology/ufperweight.dart';
import 'package:pocket_nephrology/osmolargap.dart';
import 'package:flutter/material.dart';
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
import 'abg_analyzer.dart';

void main() {
  runApp(const MaterialApp(
      debugShowCheckedModeBanner: false,

      home: MyApp()));
}


const snackBar = SnackBar(
  content: Text('Developed by Ratib Mahfouz M.D.'),
);

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Container(
        width: double.infinity,
        decoration: const BoxDecoration(
            gradient: LinearGradient(
                begin: Alignment.topCenter,
                colors: [
                  Color(0xFF550024),
                  Color(0xFF870d4c),
                  Color(0xFFbb4678),
                ]
            )
        ),
        child: Column(
          crossAxisAlignment: CrossAxisAlignment.start,
          children: <Widget>[
            const SizedBox(height: 20,),
            Align(
              alignment: Alignment.topRight,
              child: IconButton(
                  icon: const Icon(Icons.info_outlined, size: 30, color: Colors.white),
                  onPressed: () {
                    ScaffoldMessenger.of(context).showSnackBar(snackBar);
                   },
                  ),
            ),
            const SizedBox(height: 30,),
            const Padding(
              padding: EdgeInsets.all(20),
              child: Column(
                crossAxisAlignment: CrossAxisAlignment.start,
                children: <Widget>[
                  Text("Pocket Nephrology", style: TextStyle(color: Colors.white, fontSize: 40,  fontWeight: FontWeight.bold,),),
                  SizedBox(height: 10,),
                  Text("The ultimate Nephrology tool", style: TextStyle(color: Colors.white, fontFamily: "RobotoMono", fontSize: 18),),

                ],
              ),
            ),
            const SizedBox(height: 20),
            Expanded(
              child: Container(
                height: double.infinity,
                width: double.infinity,
                decoration: const BoxDecoration(
                    color: Colors.white,
                    borderRadius: BorderRadius.only(topLeft: Radius.circular(60), topRight: Radius.circular(60))
                ),
                child: Padding(
                  padding: const EdgeInsets.all(20.0),
                  child: GridView.count(crossAxisCount: 3,
                      scrollDirection: Axis.vertical,
                      mainAxisSpacing: 16,
                      crossAxisSpacing: 16,
                      primary: false,
                      children: <Widget>[
                        ElevatedButton(
                            onPressed: () {
                              Navigator.push(context, MaterialPageRoute(builder: (context) => const hypona_correction()));
                            },
                            style: ElevatedButton.styleFrom(
                              shape: RoundedRectangleBorder(
                                borderRadius: BorderRadius.circular(32.0),), backgroundColor: const Color(0xFFFFFFFF), disabledForegroundColor: const Color(0xFF959595).withOpacity(0.38), disabledBackgroundColor: const Color(0xFF959595).withOpacity(0.12),
                              elevation: 2,
                            ),
                            child:
                             const Column(
                              mainAxisAlignment: MainAxisAlignment.center,
                              children: [
                                Padding(
                                  padding: EdgeInsets.all(5.0),
                                  child: Icon(Icons.science,
                                    color: Color(0xFF560027),
                                  ),
                                ),
                                Flexible(
                                  child: Text('HypoNa nCorrection',
                                    maxLines: 2,
                                    textAlign: TextAlign.center,
                                    style: TextStyle(
                                      color: Color(0xFF880e4f),

                                    ),
                                  ),
                                ),
                              ],
                            )
                        ),

                        ElevatedButton(
                            onPressed: () {
                              Navigator.push(context, MaterialPageRoute(builder: (context) => const Water_Deficit()));
                            },

                            style: ElevatedButton.styleFrom(

                              shape: RoundedRectangleBorder(
                                borderRadius: BorderRadius.circular(32.0),), backgroundColor: const Color(0xFFFFFFFF), disabledForegroundColor: const Color(0xFF959595).withOpacity(0.38), disabledBackgroundColor: const Color(0xFF959595).withOpacity(0.12),
                              elevation: 2,
                            ),
                            child:
                            const Column(
                              mainAxisAlignment: MainAxisAlignment.center,
                              children: [
                                Padding(
                                  padding: EdgeInsets.all(5.0),
                                  child: FaIcon(FontAwesomeIcons.faucetDrip,
                                    color: Color(0xFF560027),
                                  ),
                                ),
                                Flexible(
                                  child: Text('Water Deficit',
                                    textAlign: TextAlign.center,
                                    style: TextStyle(
                                      color: Color(0xFF880e4f),
                                  
                                    ),
                                  ),
                                ),
                              ],
                            )
                        ),


                        ElevatedButton(
                            onPressed: () {
                              Navigator.push(context, MaterialPageRoute(builder: (context) => const abg_analyzer()));
                            },

                            style: ElevatedButton.styleFrom(

                              shape: RoundedRectangleBorder(
                                borderRadius: BorderRadius.circular(32.0),), backgroundColor: const Color(0xFFFFFFFF), disabledForegroundColor: const Color(0xFF959595).withOpacity(0.38), disabledBackgroundColor: const Color(0xFF959595).withOpacity(0.12),
                              elevation: 2,
                            ),
                            child:
                            const Column(
                              mainAxisAlignment: MainAxisAlignment.center,
                              children: [
                                Padding(
                                  padding: EdgeInsets.all(5.0),
                                  child: FaIcon(FontAwesomeIcons.calculator,
                                    color: Color(0xFF560027),
                                  ),
                                ),
                                Flexible(
                                  child: Text('ABG Calculator',
                                    textAlign: TextAlign.center,
                                    style: TextStyle(
                                      color: Color(0xFF880e4f),
                                                                
                                    ),
                                  ),
                                ),
                              ],
                            )
                        ),


                        ElevatedButton(
                            onPressed: () {
                              Navigator.push(context, MaterialPageRoute(builder: (context) => const ufperweight()));

                            },

                            style: ElevatedButton.styleFrom(

                              shape: RoundedRectangleBorder(
                                borderRadius: BorderRadius.circular(32.0),), backgroundColor: const Color(0xFFFFFFFF), disabledForegroundColor: const Color(0xFF959595).withOpacity(0.38), disabledBackgroundColor: const Color(0xFF959595).withOpacity(0.12),
                              elevation: 2,
                            ),
                            child:
                            const Column(
                              mainAxisAlignment: MainAxisAlignment.center,
                              children: [
                                Padding(
                                  padding: EdgeInsets.all(5.0),
                                  child: FaIcon(FontAwesomeIcons.weightScale,
                                    color: Color(0xFF560027),
                                  ),
                                ),
                                Flexible(
                                  child: Text('UF per Weight',
                                    textAlign: TextAlign.center,
                                    style: TextStyle(
                                      color: Color(0xFF880e4f),
                                    ),
                                  ),
                                ),
                              ],
                            )
                        ),
                        ElevatedButton(
                            onPressed: () {
                              Navigator.push(context, MaterialPageRoute(builder: (context) => const osmolargap()));
                            },

                            style: ElevatedButton.styleFrom(

                              shape: RoundedRectangleBorder(
                                borderRadius: BorderRadius.circular(32.0),), backgroundColor: const Color(0xFFFFFFFF), disabledForegroundColor: const Color(0xFF959595).withOpacity(0.38), disabledBackgroundColor: const Color(0xFF959595).withOpacity(0.12),
                              elevation: 2,
                            ),
                            child:
                            const Column(
                              mainAxisAlignment: MainAxisAlignment.center,
                              children: [
                                Padding(
                                  padding: EdgeInsets.all(5.0),
                                  child: FaIcon(FontAwesomeIcons.arrowsLeftRight,
                                    color: Color(0xFF560027),
                                  ),
                                ),
                                Flexible(
                                  child: Text('Osmolar Gap',
                                    textAlign: TextAlign.center,
                                    style: TextStyle(
                                      color: Color(0xFF880e4f),
                                    ),
                                  ),
                                ),
                              ],
                            )
                        ),



                        ElevatedButton(
                            onPressed: () {

                            },

                            style: ElevatedButton.styleFrom(

                              shape: RoundedRectangleBorder(
                                borderRadius: BorderRadius.circular(32.0),), backgroundColor: const Color(0xFFFFFFFF), disabledForegroundColor: const Color(0xFF959595).withOpacity(0.38), disabledBackgroundColor: const Color(0xFF959595).withOpacity(0.12),
                              elevation: 2,
                            ),
                            child:
                            const Column(
                              mainAxisAlignment: MainAxisAlignment.center,
                              children: [
                                Padding(
                                  padding: EdgeInsets.all(5.0),
                                  child: FaIcon(FontAwesomeIcons.prescriptionBottle,
                                    color: Color(0xFF560027),

                                  ),
                                ),
                                Flexible(
                                  child: Text('Urine Gap',
                                    textAlign: TextAlign.center,
                                    style: TextStyle(
                                  
                                      color: Color(0xFF880e4f),
                                    ),
                                  ),
                                ),
                              ],
                            )
                        ),


                      ]
                  ),
                ),
              ),
            )
          ],
        ),
      ),
    );
  }
}

code of interest

ElevatedButton(
                            onPressed: () {
                              Navigator.push(context, MaterialPageRoute(builder: (context) => const hypona_correction()));
                            },
                            style: ElevatedButton.styleFrom(
                              shape: RoundedRectangleBorder(
                                borderRadius: BorderRadius.circular(32.0),), backgroundColor: const Color(0xFFFFFFFF), disabledForegroundColor: const Color(0xFF959595).withOpacity(0.38), disabledBackgroundColor: const Color(0xFF959595).withOpacity(0.12),
                              elevation: 2,
                            ),
                            child:
                             const Column(
                              mainAxisAlignment: MainAxisAlignment.center,
                              children: [
                                Padding(
                                  padding: EdgeInsets.all(5.0),
                                  child: Icon(Icons.science,
                                    color: Color(0xFF560027),
                                  ),
                                ),
                                Flexible(
                                  child: Text('HypoNa nCorrection',
                                    maxLines: 2,
                                    textAlign: TextAlign.center,
                                    style: TextStyle(
                                      color: Color(0xFF880e4f),

                                    ),
                                  ),
                                ),
                              ],
                            )
                        ),

Thank you.

I tried using expanded and flexible widgets, no effect on the text breaks.

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