Last updated:
0 purchases
flutter launch
Flutter launch WhatsApp #
A Flutter plugin for iOS and Android to open whatsApp.
Installation #
First, add flutter_launch_whatsapp as a dependency in your pubspec.yaml file.
iOS #
Add the following entry to your Info.plist file, located in
<key>LSApplicationQueriesSchemes</key>
<array>
<string>whatsapp</string>
</array>
copied to clipboard
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();
},
)
),
),
);
}
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.