open_share_plus 2.0.0 copy "open_share_plus: ^2.0.0" to clipboard
open_share_plus: ^2.0.0 copied to clipboard

Flutter Plugin for sharing contents to social media.You can use it share to Mail, Phone, WhatsApp And System Share UI.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:open_share_plus/open.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      home: Scaffold(
        appBar: AppBar(title: const Text('open_share_plus')),
        body: Column(
          crossAxisAlignment: CrossAxisAlignment.center,
          children: [
            ElevatedButton(
              onPressed: () {
                Open.browser(url: "https://datadirr.com");
              },
              child: const Text("Open Browser"),
            ),
            const SizedBox(height: 20),
            ElevatedButton(
              onPressed: () {
                Open.phone(phoneNumber: "+919876543210");
              },
              child: const Text("Open Phone Dial"),
            ),
            const SizedBox(height: 20),
            ElevatedButton(
              onPressed: () {
                Open.mail(
                  toAddress: "datadirr@gmail.com",
                  subject: "datadirr",
                  body: "datadirr dev",
                );
              },
              child: const Text("Send Mail"),
            ),
            const SizedBox(height: 20),
            ElevatedButton(
              onPressed: () {
                Open.whatsApp(whatsAppNumber: "919876543210", text: "datadirr");
              },
              child: const Text("Send WhatsApp"),
            ),
            const SizedBox(height: 20),
          ],
        ),
      ),
    );
  }
}
copied to clipboard
23
likes
160
points
1.46k
downloads

Publisher

verified publisherdatadirr.com

Weekly Downloads

2024.09.17 - 2025.04.01

Flutter Plugin for sharing contents to social media.You can use it share to Mail, Phone, WhatsApp And System Share UI.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter, flutter_web_plugins, open_filex, plugin_platform_interface, url_launcher, web

More

Packages that depend on open_share_plus