v0.1.2
flutter_open_whatsapp
एक नया Flutter प्लगइन जो उपयोगकर्ता के नंबर को सहेजे बिना एकल उपयोगकर्ता को WhatsApp संदेश भेजेगा।
87लाइक 6630-दिन डाउनलोड40Pub अंक
प्लेटफ़ॉर्म डेटा नहीं
एक फ्लटर प्लगइन जो व्हाट्सएप खोलता है और एकल संख्या को संदेश भेजता है।
{"sdk":"flutter"}{"sdk":"flutter"}यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।
A Flutter plugin to open WhatsApp and send message to single number in Android and iOS without saving user's number.
To use the plugin, add 'flutter_open_whatsapp' as a dependency in your pubspec.yaml file.
import 'package:flutter_open_whatsapp/flutter_open_whatsapp.dart';
void main() => runApp(MyApp());
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: Center(
child: MaterialButton(onPressed: (){
FlutterOpenWhatsapp.sendSingleMessage("918179015345", "Hello");
},
child: Text('Running on: $_platformVersion\n'),
)
),
),
);
}
}
Refer to the example directory of flutter app.