quick_share

Hecho en 🇵🇷 por Radamés Jomuel Valentín Reyes

Import

import 'package:quick_share/quick_share.dart';

Library Widgets

A button for quickly sharing files

QuickShareFiles(
		shareButton: Padding(
		padding: EdgeInsets.symmetric(
			vertical: 10,
		),
		child: Text(
			"Click me to share files",
		),
	),
),

A button and content to take and share a screenshot of the child widget

QuickShareScreenshot(
	child: const Text("Some text here for absolutely no reason."), 
	shareButton: const Padding(
		padding: EdgeInsets.symmetric(
			vertical: 10,
		),
		child: Text("Click me to share"),
	), 
	buttonPlacement: ButtonPlacement.top,
),

Libraries

main
quick_share