mirror of
https://github.com/immich-app/immich.git
synced 2025-12-19 03:25:22 -05:00
13 lines
259 B
Dart
13 lines
259 B
Dart
import 'package:auto_route/auto_route.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
@RoutePage()
|
|
class SharingPage extends StatelessWidget {
|
|
const SharingPage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container();
|
|
}
|
|
}
|