add scrollbar in logs viewer screen (#1749)
This commit is contained in:
commit
1a70c97b6a
1 changed files with 10 additions and 8 deletions
|
@ -42,6 +42,7 @@ class _LogFileViewerState extends State<LogFileViewer> {
|
||||||
}
|
}
|
||||||
return Container(
|
return Container(
|
||||||
padding: const EdgeInsets.only(left: 12, top: 8, right: 12),
|
padding: const EdgeInsets.only(left: 12, top: 8, right: 12),
|
||||||
|
child: Scrollbar(
|
||||||
child: SingleChildScrollView(
|
child: SingleChildScrollView(
|
||||||
child: Text(
|
child: Text(
|
||||||
_logs!,
|
_logs!,
|
||||||
|
@ -53,6 +54,7 @@ class _LogFileViewerState extends State<LogFileViewer> {
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue