Merge branch 'main' into reduce_logs

This commit is contained in:
Vishnu Mohandas 2024-02-24 16:24:18 +05:30 committed by GitHub
commit 471ee5d95b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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> {
), ),
), ),
), ),
),
); );
} }
} }