How do i make TextButton full width in flutter?

To make TextButton full width we can put TextButton in SizedBox widget like below

  • SizedBox.expand
  • SizedBox with width property

 

Example

SizedBox.expand

SizedBox.expand(
 
  child: TextButton(

    child: Text("Edit Profie", textAlign: TextAlign.left, style: TextStyle(
        color: Colors.white,
        fontSize: 16.sp
    ),),onPressed: (){
    Navigator.pushNamed(context, AppRoutes.editProfile);
  },),
)

 

SizedBox with width property

SizedBox(
  width: double.infinity,
  child: TextButton(

    child: Text("Edit Profie", textAlign: TextAlign.left, style: TextStyle(
        color: Colors.white,
        fontSize: 16.sp
    ),),onPressed: (){
    Navigator.pushNamed(context, AppRoutes.editProfile);
  },),
)