I have no problem with "CODE128" format, but I can't display "EAN-13" format.
const App = () => {
const value = "Hello World";
return (
<View style={styles.container}>
<Barcode value={value} format="EAN-13" />
</View>
);
};
I tried :
- EAN13, EAN-13, EAN
- add the
flat prop as I've seen elsewhere, but that doesn't change anything
Anyone have a solution?

I have no problem with "CODE128" format, but I can't display "EAN-13" format.
I tried :
flatprop as I've seen elsewhere, but that doesn't change anythingAnyone have a solution?