flutter_share_plus 0.0.1
flutter_share_plus: ^0.0.1 copied to clipboard
Flutter plugin to share text and images
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:flutter_share_plus_example/HomePage.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({Key? key}) : super(key: key);
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
home: HomePage(),
);
}
}