widget_to_image 2.0.0 widget_to_image: ^2.0.0 copied to clipboard
A simple package to convert any of your widgets into an image.
Widget To Image #
A simple package to convert any of your widgets into an image
Usage #
Import the package #
import 'package:widget_to_image/widget_to_image.dart';
Use the package #
ByteData byteData = await WidgetToImage.widgetToImage(Container(
width: 100,
height: 100,
color: Colors.blue
));
OR
ByteData byteData = await WidgetToImage.repaintBoundaryToImage(key);
Example #
Find the example wiring in the widget_to_image example application.
Details #
See the widget_to_image.dart for more details.
Issues and feedback #
Please file issues to send feedback or report a bug. Thank you!