extended_share 0.0.1 copy "extended_share: ^0.0.1" to clipboard
extended_share: ^0.0.1 copied to clipboard

discontinuedreplaced by: share_plus

A flutter plugin to perform a share with an optional subject

example/lib/main.dart

import 'package:extended_share/extended_share.dart';
import 'package:flutter/material.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: FlatButton(
            child: Text("Share"),
            onPressed: () {
              ExtendedShare.share(text: "Some text", subject: "A subject");
            },
          ),
        ),
      ),
    );
  }
}
0
likes
40
pub points
0%
popularity

Publisher

unverified uploader

A flutter plugin to perform a share with an optional subject

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on extended_share