@@ -27,48 +27,52 @@ class _AnalogWaveformControlsState extends State<AnalogWaveformControls> {
2727 ),
2828 child: Column (
2929 children: [
30- Row (
31- children: [
32- Expanded (
33- child: TextButton (
34- style: TextButton .styleFrom (
35- backgroundColor: primaryRed,
36- shape: RoundedRectangleBorder (
37- borderRadius: BorderRadius .circular (6 ),
30+ Expanded (
31+ child: Row (
32+ crossAxisAlignment: CrossAxisAlignment .stretch,
33+ children: [
34+ Expanded (
35+ child: TextButton (
36+ style: TextButton .styleFrom (
37+ backgroundColor: primaryRed,
38+ shape: RoundedRectangleBorder (
39+ borderRadius: BorderRadius .circular (6 ),
40+ ),
3841 ),
39- ),
40- child : Text (
41- appLocalizations.wave1,
42- style : TextStyle (
43- color : Colors .white ,
44- fontSize : 14 ,
42+ child : Text (
43+ appLocalizations.wave1,
44+ style : TextStyle (
45+ color : Colors .white,
46+ fontSize : 14 ,
47+ ) ,
4548 ),
49+ onPressed: () => {},
4650 ),
47- onPressed: () => {},
4851 ),
49- ),
50- const SizedBox (width : 4 ),
51- Expanded (
52- child : TextButton (
53- style : TextButton . styleFrom (
54- backgroundColor : primaryRed,
55- shape : RoundedRectangleBorder (
56- borderRadius : BorderRadius . circular ( 6 ),
52+ const SizedBox (width : 4 ),
53+ Expanded (
54+ child : TextButton (
55+ style : TextButton . styleFrom (
56+ backgroundColor : primaryRed,
57+ shape : RoundedRectangleBorder (
58+ borderRadius : BorderRadius . circular ( 6 ),
59+ ),
5760 ),
58- ),
59- child : Text (
60- appLocalizations.wave2,
61- style : TextStyle (
62- color : Colors .white ,
63- fontSize : 14 ,
61+ child : Text (
62+ appLocalizations.wave2,
63+ style : TextStyle (
64+ color : Colors .white,
65+ fontSize : 14 ,
66+ ) ,
6467 ),
68+ onPressed: () => {},
6569 ),
66- onPressed: () => {},
6770 ),
68- ) ,
69- ] ,
71+ ] ,
72+ ) ,
7073 ),
71- IntrinsicHeight (
74+ const SizedBox (height: 4 ),
75+ Expanded (
7276 child: Row (
7377 crossAxisAlignment: CrossAxisAlignment .stretch,
7478 children: [
0 commit comments