mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-04 03:27:09 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			404 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			404 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
import 'package:auto_route/auto_route.dart';
 | 
						|
import 'package:flutter/material.dart';
 | 
						|
import 'package:immich_mobile/presentation/widgets/map/map.widget.dart';
 | 
						|
 | 
						|
@RoutePage()
 | 
						|
class DriftMapPage extends StatelessWidget {
 | 
						|
  const DriftMapPage({super.key});
 | 
						|
 | 
						|
  @override
 | 
						|
  Widget build(BuildContext context) {
 | 
						|
    return const Scaffold(
 | 
						|
      extendBodyBehindAppBar: true,
 | 
						|
      body: DriftMap(),
 | 
						|
    );
 | 
						|
  }
 | 
						|
}
 |