Published
- 1 min read
elevatedbutton color
The solution for this is noted below
elevatedbutton color
Solution
Expanded buildPlayButton({Color color, int soundNumber}){
return Expanded(
child: ElevatedButton(
onPressed: () {
playSound(soundNumber);
},
style: ButtonStyle(
backgroundColor: MaterialStateProperty.all<Color>(color),
),
),
);}
Try other methods by searching on the site. That is if this doesn’t work