skip to Main Content

Flutter logic deeplink using app_link identification url to redirect page

I'm having trouble creating deeplinks with app_links. Package: https://pub.dev/packages/app_links Widget build(BuildContext context) { return MaterialApp( navigatorKey: _navigatorKey, initialRoute: "/", onGenerateRoute: (RouteSettings settings) { Widget routeWidget = defaultScreen(); String? routeName = settings.name; if (routeName == '/reset-password/') { // redirect to Reset…

VIEW QUESTION
Back To Top
Search