instagram_share 0.1.0 copy "instagram_share: ^0.1.0" to clipboard
instagram_share: ^0.1.0 copied to clipboard

outdated

Flutter plugin allowing to share media to instagram

example/lib/main.dart

import 'package:flutter/material.dart';

import 'package:instagram_share/instagram_share.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: MaterialButton(child: Text('Share'), onPressed: () {
          InstagramShare.share('/', 'image');
        }),
      ),
    );
  }
}
19
likes
0
pub points
68%
popularity

Publisher

unverified uploader

Flutter plugin allowing to share media to instagram

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on instagram_share