chore: hide download analytics button on mobile (#3488)

This commit is contained in:
ggurdin 2025-07-16 14:12:40 -04:00 committed by GitHub
parent ded2b35c7d
commit c948aeef7b
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:material_symbols_icons/symbols.dart';
@ -12,6 +13,10 @@ class DownloadAnalyticsButton extends StatelessWidget {
@override
Widget build(BuildContext context) {
if (!kIsWeb) {
return const SizedBox.shrink();
}
return IconButton(
tooltip: L10n.of(context).download,
icon: const Icon(Symbols.download),