Deep Linking
Overview of how the SDK handles deep links and how to perform custom navigation within your application
Last updated
import 'package:pushly_pushsdk/pushsdk.dart';
...
await PushSDK.registerNotificationLifecycleCallbacks(
onPushSDKDidReceiveNotificationDestination: (destination, interaction) {
// Navigate to a activity within your application using the destination (the Landing URL)
// Return true to inform the SDK that it should not navigate
return true;
}
);onPushSDKDidReceiveNotificationDestination: (destination, interaction) {
// Navigate to a activity within your application using the destination (the Landing URL)
// Return true to inform the SDK that it should not navigate
return true;
}