chore: remove analytics popup header text on mobile (#1966)

This commit is contained in:
ggurdin 2025-02-27 10:27:14 -05:00 committed by GitHub
parent f5708facd9
commit 82ac5da135
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,3 +1,4 @@
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/l10n.dart';
@ -80,11 +81,13 @@ class AnalyticsPopupWrapperState extends State<AnalyticsPopupWrapper> {
return FullWidthDialog(
dialogContent: Scaffold(
appBar: AppBar(
title: Text(
localView == ConstructTypeEnum.morph
? ConstructTypeEnum.morph.indicator.tooltip(context)
: ConstructTypeEnum.vocab.indicator.tooltip(context),
),
title: kIsWeb
? Text(
localView == ConstructTypeEnum.morph
? ConstructTypeEnum.morph.indicator.tooltip(context)
: ConstructTypeEnum.vocab.indicator.tooltip(context),
)
: null,
leading: IconButton(
icon: localConstructZoom == null
? const Icon(Icons.close)