fixed bottom overlay height when there is no position/title
This commit is contained in:
parent
b9dd6becaf
commit
7fe8dbe13c
1 changed files with 5 additions and 4 deletions
|
@ -153,10 +153,11 @@ class _FullscreenBottomOverlayContent extends StatelessWidget {
|
||||||
mainAxisSize: MainAxisSize.min,
|
mainAxisSize: MainAxisSize.min,
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: [
|
children: [
|
||||||
SizedBox(
|
if (positionTitle.isNotEmpty)
|
||||||
width: maxWidth,
|
SizedBox(
|
||||||
child: Text(positionTitle, strutStyle: Constants.overflowStrutStyle),
|
width: maxWidth,
|
||||||
),
|
child: Text(positionTitle, strutStyle: Constants.overflowStrutStyle),
|
||||||
|
),
|
||||||
if (entry.hasGps)
|
if (entry.hasGps)
|
||||||
Container(
|
Container(
|
||||||
padding: const EdgeInsets.only(top: _interRowPadding),
|
padding: const EdgeInsets.only(top: _interRowPadding),
|
||||||
|
|
Loading…
Reference in a new issue