J'essaie de définir une taille à FloatingActionButton
dans le flutter, je veux définir width
/height
, je veux dire, agrandir le bouton, je cherchais une circulaire bouton, mais le seul que j'ai obtenu était celui-ci, alors, j'ai commencé à travailler avec cela, mais j'ai besoin d'un peu plus grand.
Utilisez un Container
où vous pouvez spécifier width
et height
, puis utilisez un RawMaterialButton
, comme ceci:
myFabButton = Container(
width: 200.0,
height: 200.0,
child: new RawMaterialButton(
shape: new CircleBorder(),
elevation: 0.0,
child: new Icon(
icon: favorite,
color: Colors.blue,
),
onPressed: (){},
);
Utilisez un SizedBox
SizedBox(
width: 200.0,
height: 200.0,
child: FloatingActionButton(
onPressed: () {},
),
)
Vous pouvez envelopper votre bouton avec un widget Transform.scale()
:
floatingActionButton: Transform.scale(
scale: 1.5,
child: FloatingActionButton(onPressed: () {}),
)