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,
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
SizedBox(
|
||||
width: maxWidth,
|
||||
child: Text(positionTitle, strutStyle: Constants.overflowStrutStyle),
|
||||
),
|
||||
if (positionTitle.isNotEmpty)
|
||||
SizedBox(
|
||||
width: maxWidth,
|
||||
child: Text(positionTitle, strutStyle: Constants.overflowStrutStyle),
|
||||
),
|
||||
if (entry.hasGps)
|
||||
Container(
|
||||
padding: const EdgeInsets.only(top: _interRowPadding),
|
||||
|
|
Loading…
Reference in a new issue