: Use the pdf package and load the font manually:
flutter: fonts: - family: KhmerFont fonts: - asset: assets/fonts/KhmerFont.ttf Use code with caution. Copied to clipboard
final pdf = pw.Document(); pdf.addPage( pw.Page( build: (pw.Context context) return pw.Center( child: pw.Text( 'សួស្តីកម្ពុជា', // Hello Cambodia style: pw.TextStyle(font: ttf), ), ); , ), );