skip to Main Content

how remove innerpadding of textbutton flutter?

How to remove internal spacing from a text button in flutter? enter image description here Remove the internal spacing of the button TextButton( style: ButtonStyle( padding: MaterialStateProperty.all<EdgeInsetsGeometry>( EdgeInsets.zero), tapTargetSize: MaterialTapTargetSize.shrinkWrap ), onPressed: () {}, child: Container( width: 50, height: 50,…

VIEW QUESTION
Back To Top
Search