“Стиль кнопки трепетания” Ответ

Текстовая кнопка стиль трепетания

TextButton(
	child: Text('Text'),
    style: TextButton.styleFrom(primary: Colors.blue),
    onPressed: () {
    	print('Pressed');
    },
)
loonix

Стиль кнопки трепетания

ElevatedButton(
  style: ButtonStyle(
    backgroundColor: MaterialStateProperty.resolveWith<Color>(
      (Set<MaterialState> states) {
        if (states.contains(MaterialState.pressed))
          return Theme.of(context).colorScheme.primary.withOpacity(0.5);
        return null; // Use the component's default.
      },
    ),
  ),
)
Stupid Swiftlet

Ответы похожие на “Стиль кнопки трепетания”

Вопросы похожие на “Стиль кнопки трепетания”

Больше похожих ответов на “Стиль кнопки трепетания” по Dart

Смотреть популярные ответы по языку

Смотреть другие языки программирования