import "package:flutter/cupertino.dart"; import "package:flutter/material.dart"; import "package:photos/services/search_service.dart"; import "package:photos/theme/ente_theme.dart"; import "package:photos/ui/map/enable_map.dart"; import "package:photos/ui/map/map_screen.dart"; class GoToMapWidget extends StatelessWidget { const GoToMapWidget({super.key}); @override Widget build(BuildContext context) { final textScaleFactor = MediaQuery.textScaleFactorOf(context); late final double width; if (textScaleFactor <= 1.0) { width = 85.0; } else { width = 85.0 + ((textScaleFactor - 1.0) * 64); } final colorScheme = getEnteColorScheme(context); return GestureDetector( onTap: () async { final bool result = await requestForMapEnable(context); if (result) { Navigator.of(context).push( MaterialPageRoute( builder: (context) => MapScreen( filesFutureFn: SearchService.instance.getAllFiles, ), ), ); } }, child: SizedBox( width: width, child: Padding( padding: const EdgeInsets.symmetric(horizontal: 6, vertical: 10), child: Column( mainAxisSize: MainAxisSize.min, children: [ SizedBox( width: 64, height: 64, child: Icon( CupertinoIcons.map_fill, color: colorScheme.strokeFaint, size: 48, ), ), const SizedBox( height: 10, ), Text( "Your map", maxLines: 2, textAlign: TextAlign.center, overflow: TextOverflow.ellipsis, style: getEnteTextTheme(context).mini, ), ], ), ), ), ); } }