Ich habe dieses verwendet, weil mir die Anpassung des Rahmenradius und der Größe gefällt.
Material(
borderRadius: BorderRadius.circular(50),
color: Colors.blue,
child: InkWell(
splashColor: Colors.blue[900],
child: SizedBox(
width: 35,height: 35,
child: Icon(Icons.pause,color: Colors.white,size: 16,),
),
onTap: () {},
),
),
Material(
borderRadius: BorderRadius.only(
topRight: Radius.circular(10.0),
bottomLeft: Radius.circular(50.0),),
color: Colors.blue,
child: InkWell(
splashColor: Colors.blue[900],
child: SizedBox(
width: 40, height: 40,
child: Icon(Icons.remove_red_eye,color: Colors.white,size: 16,),),
onTap: () {},
),
),