deeplink_x 1.1.2+1 copy "deeplink_x: ^1.1.2+1" to clipboard
deeplink_x: ^1.1.2+1 copied to clipboard

Easy to use Flutter plugin for type-safe external deeplink launching with built-in smart fallback, supporting app stores and popular apps.

example/lib/main.dart

import 'package:deeplink_x_example/splash.dart';
import 'package:flutter/material.dart';

/// Entry point for the DeeplinkX example application.
void main() {
  runApp(const MyApp());
}

/// Root widget that sets up theming and the initial page.
class MyApp extends StatelessWidget {
  /// Creates the app widget.
  const MyApp({super.key});

  @override
  Widget build(final BuildContext context) =>
      MaterialApp(title: 'DeeplinkX Example', theme: ThemeData(useMaterial3: true), home: const SplashPage());
}