File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed
lib/screens/settings/components Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -64,16 +64,19 @@ class CurrentCommandContainer extends StatelessWidget {
64
64
child: Container (
65
65
width: Responsive .isDesktop (context)
66
66
? MediaQuery .of (context).size.width - 270
67
- : MediaQuery .of (context).size.width -
68
- 56 , // remove drawer width
67
+ : MediaQuery .of (context).size.width - 56 ,
68
+ height: Responsive .isDesktop (context)
69
+ ? MediaQuery .of (context).size.height / 25
70
+ : MediaQuery .of (context).size.height /
71
+ 5 , // remove drawer width
69
72
decoration: BoxDecoration (
70
73
color: kBgLightColor,
71
74
),
72
75
child: Padding (
73
- padding: const EdgeInsets .all ( 8.0 ),
76
+ padding: const EdgeInsets .only (top : 10 , left : 10 ),
74
77
child: SelectableText (
75
78
'ccextractor --gui_mode_reports ${paramsList .reduce ((value , element ) => value + ' ' + element )} +[input files]' ,
76
- maxLines: 2 ,
79
+ // maxLines: 2,
77
80
style: TextStyle (
78
81
fontSize: 15 ,
79
82
),
You can’t perform that action at this time.
0 commit comments