Giter Site home page Giter Site logo

ahmeriqbal7aa / url_launcher_package_examples Goto Github PK

View Code? Open in Web Editor NEW
1.0 1.0 0.0 53 KB

|| URL || SMS || EMAIL || PHONE ||

Kotlin 3.64% Swift 10.06% Objective-C 0.95% Dart 85.35%
url-launcher flutter dart url sms email phone flutter-app flutter-apps flutter-example flutter-examples flutter-community url-launcher-package

url_launcher_package_examples's Introduction

url_launcher_package_examples

A new Flutter application.

Getting Started

For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

Do Some Configuration

  • Add these lines to AndroidManifest.xml under manifest.
<queries>
  <!-- If your app opens https URLs -->
  <intent>
    <action android:name="android.intent.action.VIEW" />
    <data android:scheme="https" />
  </intent>
  <!-- If your app makes calls -->
  <intent>
    <action android:name="android.intent.action.DIAL" />
    <data android:scheme="tel" />
  </intent>
  <!-- If your app emails -->
  <intent>
    <action android:name="android.intent.action.SEND" />
    <data android:mimeType="*/*" />
  </intent>
</queries>
  • Add these lines to Info.plist under dict.
<key>LSApplicationQueriesSchemes</key>
<array>
  <string>tel</string>
</array>

Actions and Schemes

  • Open URL in the Default Browser: http:<URL> , https:<URL>, e.g. http://flutter.dev

  • Create Email To: mailto:<email address>?subject=<subject>&body=<body>, e.g. mailto:[email protected]?subject=News&body=New%20plugin

  • Make a Phone Call To: tel:<phone number>, e.g. tel:+1 555 010 999

  • Send an SMS Message To: sms:<phone number>, e.g. sms:5550101234

Working

  • URL and SMS

  • EMAIL and PHONE

url_launcher_package_examples's People

Contributors

ahmeriqbal7aa avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.