Skip to content

Commit

Permalink
Update debugger view style
Browse files Browse the repository at this point in the history
  • Loading branch information
xtyxtyx committed Nov 4, 2022
1 parent 1bf7bd7 commit 8949d2e
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions lib/src/utils/debugger_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ class _CommandItem extends StatelessWidget {
'${index + 1}',
style: TextStyle(
color: selected ? Colors.blue : Colors.black,
fontSize: 14,
fontFamily: 'monospace',
fontFamilyFallback: [
'Menlo',
Expand All @@ -141,17 +142,23 @@ class _CommandItem extends StatelessWidget {
),
SizedBox(width: 20),
Container(
width: 100,
width: 400,
child: Text(
command.escapedChars,
style: TextStyle(color: command.error ? Colors.red : null),
style: TextStyle(
color: command.error ? Colors.red : null,
fontSize: 14,
),
),
),
Expanded(
child: Container(
child: Text(
command.explanation.join(','),
style: TextStyle(color: command.error ? Colors.red : null),
style: TextStyle(
color: command.error ? Colors.red : null,
fontSize: 14,
),
),
),
),
Expand Down

0 comments on commit 8949d2e

Please sign in to comment.