Double-sided printing with expo-print

Please provide the following:

  1. react-native-unimodules: 0.7.0, expo-print: 8.0.0
  2. Platforms(Android/iOS/web/all): IOS

Hello, I’m curios if there is any way to enable double-sided printing with expo-print. I see that when I’m using the printAsync method from expo-print I see the first dialog.
In order to see the double-sided setting I would need to see something like in the second dialog which appears natively when trying to print something and where I’m able to select double-side printing.

Is expo sdk able to provide this setting and view option?

Thank you

Hy there, using the following code:

const printerURI = await Print.selectPrinterAsync()
 Print.printAsync({
   markupFormatterIOS: html(message),
   printerUrl: printerURI.url
 })

was not allowing me to see the other options like double-sided printing, preview or page format.

Using directly Print.printAsync method which is allowing you to select printer as well was what I looking for.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.