“ElevadoButton Flutter Style” Respostas de código

ElevadoButton Flutter Style

ElevatedButton(
  style: ElevatedButton.styleFrom(
  onPrimary: Colors.black87,
  primary: Colors.grey[300],
  minimumSize: Size(88, 36),
  padding: EdgeInsets.symmetric(horizontal: 16),
  shape: ElevatedButton.styleFrom(
    primary: ThemeColors.darkBg,
    shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(10.0), side: BorderSide(color: Colors.black)),
    ),
  onPressed: () { },
  child: Text('Looks like a RaisedButton'),
)
loonix

Flutter de estilo de botão elevado

ElevatedButton(
            child: Text('Button'),
            onPressed: () {},
            style: ElevatedButton.styleFrom(
                primary: Colors.purple,
                padding: EdgeInsets.symmetric(horizontal: 50, vertical: 20),
                textStyle: TextStyle(
                fontSize: 30,
                fontWeight: FontWeight.bold)),
),
YVONNE CHIN

Respostas semelhantes a “ElevadoButton Flutter Style”

Perguntas semelhantes a “ElevadoButton Flutter Style”

Mais respostas relacionadas para “ElevadoButton Flutter Style” em Dart

Procure respostas de código populares por idioma

Procurar outros idiomas de código