|
@@ -118,6 +118,7 @@ class _CommandItem extends StatelessWidget {
|
|
|
'${index + 1}',
|
|
'${index + 1}',
|
|
|
style: TextStyle(
|
|
style: TextStyle(
|
|
|
color: selected ? Colors.blue : Colors.black,
|
|
color: selected ? Colors.blue : Colors.black,
|
|
|
|
|
+ fontSize: 14,
|
|
|
fontFamily: 'monospace',
|
|
fontFamily: 'monospace',
|
|
|
fontFamilyFallback: [
|
|
fontFamilyFallback: [
|
|
|
'Menlo',
|
|
'Menlo',
|
|
@@ -141,17 +142,23 @@ class _CommandItem extends StatelessWidget {
|
|
|
),
|
|
),
|
|
|
SizedBox(width: 20),
|
|
SizedBox(width: 20),
|
|
|
Container(
|
|
Container(
|
|
|
- width: 100,
|
|
|
|
|
|
|
+ width: 400,
|
|
|
child: Text(
|
|
child: Text(
|
|
|
command.escapedChars,
|
|
command.escapedChars,
|
|
|
- style: TextStyle(color: command.error ? Colors.red : null),
|
|
|
|
|
|
|
+ style: TextStyle(
|
|
|
|
|
+ color: command.error ? Colors.red : null,
|
|
|
|
|
+ fontSize: 14,
|
|
|
|
|
+ ),
|
|
|
),
|
|
),
|
|
|
),
|
|
),
|
|
|
Expanded(
|
|
Expanded(
|
|
|
child: Container(
|
|
child: Container(
|
|
|
child: Text(
|
|
child: Text(
|
|
|
command.explanation.join(','),
|
|
command.explanation.join(','),
|
|
|
- style: TextStyle(color: command.error ? Colors.red : null),
|
|
|
|
|
|
|
+ style: TextStyle(
|
|
|
|
|
+ color: command.error ? Colors.red : null,
|
|
|
|
|
+ fontSize: 14,
|
|
|
|
|
+ ),
|
|
|
),
|
|
),
|
|
|
),
|
|
),
|
|
|
),
|
|
),
|