Home > ElevatedButton


Flutter ElevatedButtonにグラデーションを追加する方法

ElevatedButtonの背景色をグラデーションに設定する方法:import 'package:flutter/material.dart'; class GradientButton extends StatelessWidget { @override Widget build(BuildContext context) { return ElevatedButton( style: ButtonStyle( backgroundColor: MaterialStateProperty.all<Color>(Colors.tran>>More