deep_linking library

Deep linking support for Redus Router.

This is a separate import because it includes native platform code that may not be compatible with all platforms (e.g., web without plugins).

import 'package:redus_flutter/deep_linking.dart';

void main() async {
  WidgetsFlutterBinding.ensureInitialized();
  final initialLink = await DeepLinkHandler.getInitialLink();
  // ...
}

Classes

DeepLinkHandler
Handles deep linking for the router.

Mixins

DeepLinkMixin<T extends StatefulWidget>
Mixin to add deep link handling to your app.