Hide locationTag feature desc when name is pre-filled
This commit is contained in:
parent
892fb8e4d7
commit
faea976b55
1 changed files with 6 additions and 5 deletions
|
@ -170,11 +170,12 @@ class _AddLocationSheetState extends State<AddLocationSheet> {
|
|||
RadiusPickerWidget(
|
||||
_selectedRadiusNotifier,
|
||||
),
|
||||
const SizedBox(height: 16),
|
||||
Text(
|
||||
S.of(context).locationTagFeatureDescription,
|
||||
style: textTheme.smallMuted,
|
||||
),
|
||||
if (widget.name.isEmpty) const SizedBox(height: 16),
|
||||
if (widget.name.isEmpty)
|
||||
Text(
|
||||
S.of(context).locationTagFeatureDescription,
|
||||
style: textTheme.smallMuted,
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
|
|
Loading…
Add table
Reference in a new issue