mirror of
https://github.com/immich-app/immich
synced 2026-08-15 13:03:57 +00: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 {}
|
||
|
|
}
|