Answers for "flutter icon button remove min size"

0

flutter icon button remove min size

Simply pass an empty BoxConstrains to the constraints property and a padding of zero.
IconButton(
    padding: EdgeInsets.zero,
    constraints: BoxConstraints(),
)
Posted by: Guest on November-03-2020

Browse Popular Code Answers by Language