This repository has been archived by the owner on Jul 21, 2022. It is now read-only.
Text is not shown when sharing image on facebook or instagram #80
Labels
enhancement
New feature or request
Text is not shown when sharing image on facebook or instagram. But it's shown on messengers. How can I show text as text on facebook feed etc?
this is my method sample:
Future _shareImage(RenderRepaintBoundary imageObj) async {
try {
final image = await imageObj.toImage(pixelRatio: 5.0);
final ByteData byteData =
await image.toByteData(format: ImageByteFormat.png);
final pngBytes = byteData.buffer.asUint8List();
await Share.file('REBUSTA', 'esys.png', pngBytes, 'image/png',
text: 'www.rebusta.com');
} catch (e) {
print('error: $e');
}
}
The text was updated successfully, but these errors were encountered: