Bouton rond avec texte et icône en flottement

OutlinedButton.icon(
              icon: Icon(Icons.home),
              onPressed: (){}, 
              label: Text('OutlinedButton'),
              style: OutlinedButton.styleFrom(
                shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(20.0))
              )
            ),
Sore Serval