Flutterで評価ボタンの背景色を設定する方法
Containerを使用して背景色を設定する方法:Container( color: Colors.blue, // 背景色を指定 child: ElevatedButton( onPressed: () { // ボタンが押された時の処理 }, child: Text('評価する'), ), )>>More
Containerを使用して背景色を設定する方法:Container( color: Colors.blue, // 背景色を指定 child: ElevatedButton( onPressed: () { // ボタンが押された時の処理 }, child: Text('評価する'), ), )>>More