DealORound / Deal-O-Round

Flutter port of the Deal-O-Round board card game
MIT License
2 stars 0 forks source link

Main screen buttons are not uniform width after sound null safety upgrade #21

Closed MrCsabaToth closed 3 years ago

MrCsabaToth commented 3 years ago

Ugly

MrCsabaToth commented 3 years ago

It happens to be that the ButtonTheme widget does not work on ElevatedButton any more. It's a breaking change. Originally this was a RaisedButton embedded into the ButtonTheme. But RaisedButton became deprecated. The ElevatedButton has a ButtonStyle object and that has a minimumSize field, that's what we utilize now instead of the ButtonTheme embedding.