Results 12 comments of leocirto

I think I got the point. There is a small bug in the __printing__ package: The __'onShared'__ callback isn't working properly. When the share icon is clicked, the __'onPrinted'__ callback...

Maybe the problem is the Poppins font. With Montserrat it's apparently working well. Example: ```Dart import 'package:flutter/material.dart'; import 'package:pdf/pdf.dart'; import 'package:pdf/widgets.dart' as pw; import 'package:printing/printing.dart'; import 'dart:typed_data'; class PdfPreview extends...

I don't know the best answer, but I'd start with __Noto Sans__ fonts and test several currencies ( https://fonts.google.com/noto ). Possible configuration: ``` Dart pw.PageTheme( theme: pw.ThemeData.withFont( base: await PdfGoogleFonts.notoSansRegular(...

You should remove the __Row__. You can replace the __Container__ by a __Padding__ too. Try this one: ``` Dart // pw.Row( // mainAxisAlignment: pw.MainAxisAlignment.start, // crossAxisAlignment: pw.CrossAxisAlignment.start, // children: [...

In this case I think you can use a __WidgetSpan__ or a __Row__ combined with __Flexible__. For example: ```Dart pw.Padding( padding: pw.EdgeInsets.fromLTRB(150, 0, 50, 0), child: pw.RichText( textDirection: pw.TextDirection.ltr, textAlign:...

> just to give info, the package mentioned in the error (ex. `shared_preferences_android`) has nothing to do with the error, it just happens that its the first non-compiled android-plugin. Good...

Interesting discussion. The vertical space is allotted to the footer beforehand, and is based on the largest footer. I believe the __`Spacer( )`__ widget can help you push a fake...

yes @tomaspalaoro, I see the problem ... my first approach to solve it was using the __`Inseparable( )`__ widget with the __`Spacer( )`__ and __`Footer( )`__ widgets within it, but...

I'm also on Flutter 3.32.0, but I don't see any issues (neither in debug nor in release). My current configuration is: ```Bash dependencies: pdf: ^3.11.3 printing: ^5.14.2 ndkVersion = 28.1.13356709...