# flutter-applaunch **Repository Path**: okflutter/flutter-applaunch ## Basic Information - **Project Name**: flutter-applaunch - **Description**: flutter-applaunch - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-06-08 - **Last Updated**: 2022-05-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # flutter_applaunch A Flutter package that can retrive the URL Scheme parameters from app launch options. ## Getting Started This project is a starting point for a Dart [package](https://flutter.io/developing-packages/), a library module containing code that can be shared easily across multiple Flutter or Dart projects. Example: ----- final FlutterApplaunchPlugin applaunchPlugin = new FlutterApplaunchPlugin(); Map scheme = await applaunchPlugin.getAppLaunchURLScheme(); setState(() { print("FlutterApplaunchPlugin -- App is launched by URL Scheme: $scheme"); }); ----- The return value 'scheme' contains 2 keys: - url: the url scheme that launch the app - source (optional): the scheme of source application which calls the scheme the app (if exists)