sharesdk_plugin 1.3.10 sharesdk_plugin: ^1.3.10 copied to clipboard
ShareSDK is a social sharing component that provides social functions for apps, like authorization and share, and has social statistical analysis management background.
import 'package:flutter/material.dart';
import 'package:sharesdk_plugin_example/home.dart';
import 'package:flutter/cupertino.dart';
void main() => runApp(MyApp());
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
void initState() {
super.initState();
//if (Platform.isIOS) {
//}
}
@override
Widget build(BuildContext context) {
return MaterialApp(home: HomePage());
}
}