“Jak zmienić kolor tła podwyższonego guzika w trzepot” Kod odpowiedzi

Flutter podwyższony kolor guzika

ElevatedButton(
            child: Text('Button'),
            onPressed: () {},
            style: ButtonStyle(
                backgroundColor: MaterialStateProperty.all(Colors.red),
                padding: MaterialStateProperty.all(EdgeInsets.all(50)),
                textStyle: MaterialStateProperty.all(TextStyle(fontSize: 30))),
),
Proud Polecat

Podwyższony kolor trzepotowy

ElevatedButton(
  style: ButtonStyle(
    backgroundColor: MaterialStateProperty.resolveWith<Color>(
      (Set<MaterialState> states) {
        if (states.contains(MaterialState.pressed))
          return Colors.green;
        return null; // Use the component's default.
      },
    ),
  ),
)
Lazy Leopard

Jak zmienić kolor tła podwyższonego guzika w trzepot

ElevatedButton(
              style: ElevatedButton.styleFrom(
                primary: Colors.amber,
              ), 
              child: Text('ElevatedButton'),
              onPressed: () {},
            ),
Sore Serval

Kolor tła podwyższonego motywu przycisku w trzepot

 style: ElevatedButton.styleFrom(
              primary: Colors.purple,
            ),
RakshaD

Dodaj kolor tła do flutte przycisku

bool isButtonPressed = false;

RaisedButton(
            color: isButtonPressed ? Colors.green : Colors.red,
            onPressed: () {
              setState(() {
                isButtonPressed =!isButtonPressed;
              });
            },
          ),
Grotesque Grebe

Odpowiedzi podobne do “Jak zmienić kolor tła podwyższonego guzika w trzepot”

Pytania podobne do “Jak zmienić kolor tła podwyższonego guzika w trzepot”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu