mirror of
https://github.com/Iconica-Development/flutter_availability.git
synced 2025-05-18 20:53:45 +02:00
fix: swap constraints with scrollview to remove overflow
This commit is contained in:
parent
370f431784
commit
ff338d6277
1 changed files with 4 additions and 4 deletions
|
@ -80,10 +80,10 @@ class _TemplateLegendState extends State<TemplateLegend> {
|
|||
);
|
||||
|
||||
if (_templateDrawerOpen && !templatesLoading) {
|
||||
body = SingleChildScrollView(
|
||||
controller: _scrollController,
|
||||
child: Container(
|
||||
constraints: const BoxConstraints(maxHeight: 152),
|
||||
body = Container(
|
||||
constraints: const BoxConstraints(maxHeight: 152),
|
||||
child: SingleChildScrollView(
|
||||
controller: _scrollController,
|
||||
child: Scrollbar(
|
||||
controller: _scrollController,
|
||||
thumbVisibility: true,
|
||||
|
|
Loading…
Reference in a new issue