getshareintent 0.0.2 copy "getshareintent: ^0.0.2" to clipboard
getshareintent: ^0.0.2 copied to clipboard

A plugin to get share intents from the OS.

example/lib/main.dart

import 'dart:async';

import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:getshareintent/getshareintent.dart';

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
        title: 'ShareIntent Demo',
        theme: ThemeData(
            primarySwatch: Colors.orange,
            brightness: Brightness.dark
        ),
        home: MyAppHomePage(title: 'ShareIntent Demo')
    );
  }
}

class MyAppHomePage extends StatefulWidget {
  MyAppHomePage({Key key, this.title}) : super(key: key);

  final String title;

  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyAppHomePage> {
  String _sharedText = 'Unknown';
  final _shareIntent = ShareIntent();
  StreamSubscription<String> _shareIntentSubscription;

  @override
  void initState() {
    super.initState();

    _shareIntentSubscription = _shareIntent.onShareIntent.listen(
            (String value) {
          setState(() {
            _sharedText = value;
          });
        });

    initShareIntent();
  }

  @override
  void dispose() {
    _shareIntentSubscription.cancel();
    super.dispose();
  }

  // Platform messages are asynchronous, so we initialize in an async method.
  Future<void> initShareIntent() async {
//    String sharedText;
    // Platform messages may fail, so we use a try/catch PlatformException.
//    try {
//      sharedText = await _shareIntent.getSharedContent();
//    } on PlatformException {
//      sharedText = 'Failed to get platform version.';
//    }
  // TODO: reimplement platform exception catch

    await _shareIntent.getShareIntent().then((String value) {
      setState(() {
        _sharedText = value;
      });
    });

    // If the widget was removed from the tree while the asynchronous platform
    // message was in flight, we want to discard the reply rather than calling
    // setState to update our non-existent appearance.
    if (!mounted) return;
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('ShareIntent Demo'),
        ),
        body: Center(
          child: Text('Link: $_sharedText\n'),
        ),
      ),
    );
  }
}
1
likes
30
pub points
0%
popularity

Publisher

unverified uploader

A plugin to get share intents from the OS.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter, getshareintent_platforminterface

More

Packages that depend on getshareintent