mirror of
https://github.com/immich-app/immich
synced 2026-08-15 13:03:57 +00:00
21 lines
547 B
Dart
21 lines
547 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 payload) async {}
|
|
|
|
@override
|
|
Future<bool> reopenRemoteAsset(String remoteAssetId) async => false;
|
|
}
|