Flutter Example - Sending simple data to other apps | flutter_share plugin
* About plugin
https://pub.dev/packages/flutter_share
flutter_share | Flutter Package
Simple way to share message, links or files from your flutter app for Android and IOS (Enter to see some gifs).
pub.dev
https://pub.dev/packages/package_info
package_info | Flutter Package
Flutter plugin for querying information about the application package, such as CFBundleVersion on iOS or versionCode on Android.
pub.dev
1. Add this to pubspec.yaml file
dependencies:
package_info: ^0.4.0+6
flutter_share: ^1.0.2
2. Source Code
import 'package:flutter/material.dart';
import 'package:flutter_share/flutter_share.dart';
import 'package:package_info/package_info.dart';
ShareAppDemoState pageState;
class ShareAppDemo extends StatefulWidget {
@override
ShareAppDemoState createState() {
pageState = ShareAppDemoState();
return pageState;
}
}
class ShareAppDemoState extends State<ShareAppDemo> {
String appName;
String appID;
@override
void initState() {
super.initState();
prepareInfo();
}
void prepareInfo() async {
PackageInfo pInfo = await PackageInfo.fromPlatform();
setState(() {
appName = pInfo.appName;
appID = pInfo.packageName;
});
}
Future<void> shareApp() async {
await FlutterShare.share(
chooserTitle: "Share $appName",
title: appName,
text: 'Introducing the Flutter Code Examples app.',
linkUrl: 'https://play.google.com/store/apps/details?id=$appID',
);
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: Text("Share App Demo")),
body: Column(
children: <Widget>[
Card(
child: ListTile(
title: Text("App Name"),
subtitle: Text(appName),
),
),
Card(
child: ListTile(
title: Text("Package Name (AppID)"),
subtitle: Text(appID),
),
),
Expanded(
child: Center(
child: RaisedButton.icon(
color: Colors.blueAccent,
textColor: Colors.white,
icon: Icon(Icons.share),
label: Text("Share App"),
onPressed: () {
shareApp();
},
),
),
),
],
),
);
}
}
▶ Go to Table of Contents | 강의 목차로 이동
※ This example is also available in the Flutter Code Examples app. | 본 예제는 Flutter Code Examples 앱에서도 제공됩니다.
Flutter Code Examples - Google Play 앱
Are you a beginner at Flutter? Check out the various features of Flutter through the demo. Source code for all demos is also provided.
play.google.com