All Projects → thyagoluciano → flutter_launch_whatsapp

thyagoluciano / flutter_launch_whatsapp

Licence: GPL-3.0 license
Plugin flutter to launch whatsapp

Programming Languages

kotlin
9241 projects
dart
5743 projects
ruby
36898 projects - #4 most used programming language
swift
15916 projects
objective c
16641 projects - #2 most used programming language

Projects that are alternatives of or similar to flutter launch whatsapp

flutter-crisp
Flutter plugin for Crisp Chat
Stars: ✭ 18 (-60.87%)
Mutual labels:  flutter-plugin
nepali date picker
Material Style Date Picker with Bikram Sambat(Nepali) Calendar Support. Supports both Android and ios.
Stars: ✭ 30 (-34.78%)
Mutual labels:  flutter-plugin
lang table
lang_table is a dart plugin to generate string files from a source. Use a table to manage all multi-language resources. Inspired by fetch-mobile-localization-from-airtable
Stars: ✭ 17 (-63.04%)
Mutual labels:  flutter-plugin
simple beacons flutter
A flutter plugin project to range & monitor iBeacons.
Stars: ✭ 29 (-36.96%)
Mutual labels:  flutter-plugin
flutter-devicelocale
A Flutter package to read and return the set device locales
Stars: ✭ 45 (-2.17%)
Mutual labels:  flutter-plugin
Graphical notifications Zabbix
No description or website provided.
Stars: ✭ 77 (+67.39%)
Mutual labels:  whatsapp
LevelDBDumper
Dumps all of the Key/Value pairs from a LevelDB database
Stars: ✭ 23 (-50%)
Mutual labels:  whatsapp
iRecordView
A Simple Audio Recorder View with "hold to Record Button" and "Swipe to Cancel " Like WhatsApp
Stars: ✭ 40 (-13.04%)
Mutual labels:  whatsapp
flutter nearby connections
Flutter plugin support peer-to-peer connectivity and the discovery of nearby devices for Android vs IOS
Stars: ✭ 51 (+10.87%)
Mutual labels:  flutter-plugin
react-native-compressor
The lightweight library for compress image, video, and audio with an awesome experience
Stars: ✭ 157 (+241.3%)
Mutual labels:  whatsapp
appmetrica sdk
A Flutter plugin for Yandex AppMetrica SDK, a marketing platform for app install attribution, app analytics, and push campaigns.
Stars: ✭ 15 (-67.39%)
Mutual labels:  flutter-plugin
WaGpScraper
A Python Oriented tool to Scrap WhatsApp Group Link using Google Dork it Scraps Whatsapp Group Links From Google Results And Gives Working Links.
Stars: ✭ 18 (-60.87%)
Mutual labels:  whatsapp
whatsapp-chat-parser-website
Website to view your exported WhatsApp chat logs 👁‍🗨
Stars: ✭ 68 (+47.83%)
Mutual labels:  whatsapp
sms-gaming
🎮 Gaming platform powered by Twilio SMS.
Stars: ✭ 111 (+141.3%)
Mutual labels:  whatsapp
nativesapp
Simple WhatsApp clone just for training purposes - Course Angular Native at www.udemy.com/angular-native
Stars: ✭ 19 (-58.7%)
Mutual labels:  whatsapp
Web Vuw
A Web View for flutter
Stars: ✭ 40 (-13.04%)
Mutual labels:  flutter-plugin
reactive state
An easy to understand reactive state management solution for Flutter.
Stars: ✭ 19 (-58.7%)
Mutual labels:  flutter-plugin
flutter-elinux-plugins
Flutter plugins for embedded Linux (eLinux)
Stars: ✭ 21 (-54.35%)
Mutual labels:  flutter-plugin
flutter example
flutter code,flutter-banner,flutter-codekk,flutter-panda,flutter_tab
Stars: ✭ 94 (+104.35%)
Mutual labels:  flutter-plugin
flutter opencv
OpenCV bindings plugin for Flutter apps [work in progress]
Stars: ✭ 81 (+76.09%)
Mutual labels:  flutter-plugin

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();
            },
          )
        ),
      ),
    );
  }
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].