Flutter Launch Whatsapp Save

Plugin flutter to launch whatsapp

Project README

flutter_launch

pub package

A Flutter plugin for launching a whatsApp. Supports: iOS, Android

Usage

To use this plugin, add flutter_launch_whatsapp as a dependency in your pubspec.yaml file.

Installation

iOS

Add the following entry to your Info.plist file, located in /ios/Runner/Info.plist:

<key>LSApplicationQueriesSchemes</key>
<array>
  <string>whatsapp</string>
</array>

Android

n/a

Example

import 'package:flutter/material.dart';
import 'package:flutter_launch/flutter_launch.dart';

void main() => runApp(new MyApp());

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => new _MyAppState();
}

class _MyAppState extends State<MyApp> {

  @override
  initState() {
    super.initState();
  }

  void whatsAppOpen() async {
    await FlutterLaunch.launchWathsApp(phone: "5534992016545", message: "Hello");
  }

  @override
  Widget build(BuildContext context) {
    return new MaterialApp(
      home: new Scaffold(
        appBar: new AppBar(
          title: new Text('Plugin example app'),
        ),
        body: new Center(
          child: FlatButton(
            child: Text("Open WhatsApp"),
            onPressed: () {
              whatsAppOpen();
            },
          )
        ),
      ),
    );
  }
}

Open Source Agenda is not affiliated with "Flutter Launch Whatsapp" Project. README Source: thyagoluciano/flutter_launch_whatsapp
Stars
47
Open Issues
5
Last Commit
9 months ago
License

Open Source Agenda Badge

Open Source Agenda Rating