Swift package to easily generate barcodes in your SwiftUI projects
- Code 128 Barcode
- example image
- PDF417 Barcode
- example image
- Aztec Barcode
- example image
import BarcodeGenerator
struct ContentView: View {
var body: some View {
Barcode128View(input: "12345678")
}
}
import BarcodeGenerator
struct ContentView: View {
var body: some View {
BarcodePDF417View(input: "12345678")
}
}
import BarcodeGenerator
struct ContentView: View {
var body: some View {
AztecBarcodeView(input: "12345678")
}
}
input
- TheString
message that is encoded in the Barcode
- iOS 16.0+
dependencies: [
.package(url: "https://github.com/fontno/BarcodeGenerator.git")
]
I am available to work on Swift projects.
Contact me on github to talk.