mirror of
https://github.com/immich-app/immich.git
synced 2026-05-24 00:22:29 -04:00
19 lines
466 B
Dart
19 lines
466 B
Dart
import 'package:immich_mobile/platform/view_intent_api.g.dart';
|
|
import 'package:immich_mobile/providers/view_intent/view_intent_handler.provider.dart';
|
|
|
|
class StubViewIntentHandler implements ViewIntentHandler {
|
|
const StubViewIntentHandler();
|
|
|
|
@override
|
|
void init() {}
|
|
|
|
@override
|
|
Future<void> onAppResumed() async {}
|
|
|
|
@override
|
|
Future<void> flushDeferredViewIntent() async {}
|
|
|
|
@override
|
|
Future<void> handle(ViewIntentPayload attachment) async {}
|
|
}
|