wonsikin / react-native-barcode-builder

Component for generating barcode in react native app
Other
175 stars 116 forks source link

How to create a ean128 barcode. #22

Closed Benjamin-Lin-X closed 6 years ago

Benjamin-Lin-X commented 6 years ago

When using JsBarcode, the code below can create a ean128 barcode:

Enable encoding CODE128 as GS1-128/EAN-128.

JsBarcode("#barcode", "12345678", {
  format: "CODE128C",
  ean128: true
});

But there was no additional option for the react-native-barcode-builder.

How to create a ena128 barcode with react-native-barcode-builder?