Minor improvements
This commit is contained in:
parent
6dbe061c3b
commit
74f1fe5475
3 changed files with 13 additions and 4 deletions
|
|
@ -52,7 +52,13 @@ class _StatusScreenState extends State<StatusScreen> {
|
|||
itemCount: _logs.length,
|
||||
itemBuilder: (_, index) => Padding(
|
||||
padding: const EdgeInsets.symmetric(horizontal: 8.0),
|
||||
child: Text(_logs[index]),
|
||||
child: Text(
|
||||
_logs[index],
|
||||
style: TextStyle(
|
||||
fontSize: 10,
|
||||
fontFamily: 'monospace',
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue