fix: give morph definition a fixed height to prevent other element from jumping around
This commit is contained in:
parent
63ba5a7d10
commit
e2ec54a780
1 changed files with 2 additions and 4 deletions
|
|
@ -199,10 +199,8 @@ class _AnalyticsActivityView extends StatelessWidget {
|
|||
return const SizedBox.shrink();
|
||||
}
|
||||
|
||||
return ConstrainedBox(
|
||||
constraints: const BoxConstraints(
|
||||
minHeight: 80,
|
||||
),
|
||||
return SizedBox(
|
||||
height: 125.0,
|
||||
child: selectedChoice == null
|
||||
? const SizedBox.shrink()
|
||||
: SingleChildScrollView(
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue