Answers for "flutter icon button with border"

C
1

flutter icon button circle

ClipOval(
  child: Material(
    color: Colors.blue, // button color
    child: InkWell(
      splashColor: Colors.red, // inkwell color
      child: SizedBox(width: 56, height: 56, child: Icon(Icons.menu)),
      onTap: () {},
    ),
  ),
)
Posted by: Guest on February-19-2021

Code answers related to "flutter icon button with border"

Code answers related to "C"

Browse Popular Code Answers by Language