social_share 0.0.2 social_share: ^0.0.2 copied to clipboard
Flutter plugin to share image on social media.
import 'package:flutter/material.dart';
import 'dart:async';
import 'package:screenshot/screenshot.dart';
import 'package:social_share/social_share.dart';
void main() => runApp(MyApp());
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
String _platformVersion = 'Unknown';
@override
void initState() {
super.initState();
initPlatformState();
}
Future<void> initPlatformState() async {
String platformVersion;
if (!mounted) return;
setState(() {
_platformVersion = platformVersion;
});
}
ScreenshotController screenshotController = ScreenshotController();
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: Screenshot(
controller: screenshotController,
child: Container(
color: Colors.white,
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.stretch,
children: <Widget>[
Text(
'Running on: $_platformVersion\n',
textAlign: TextAlign.center,
),
RaisedButton(
onPressed: () async {
await screenshotController.capture().then((image) async {
SocialShare.shareInstagramStory(image.path, "#ffffff",
"#000000", "https://deep-link-url")
.then((data) {
print(data);
});
});
},
child: Text("Share On Instagram Story"),
),
RaisedButton(
onPressed: () async {
await screenshotController.capture().then((image) async {
SocialShare.shareFacebookStory(
image.path,
"#ffffff",
"#000000",
"https://deep-link-url",
"facebook-app-id")
.then((data) {
print(data);
});
});
},
child: Text("Share On Facebook Story"),
),
RaisedButton(
onPressed: () async {
await screenshotController.capture().then((image) async {
SocialShare.copyToClipboard(
"This is Social Share plugin",
).then((data) {
print(data);
});
});
},
child: Text("Copy to clipboard"),
)
],
),
),
),
),
);
}
}