Native Swift Package for iOS Applications.
Setup time: 1 minute
Sample project: https://github.com/nazar-41/PDF-Generator/tree/main/Example
preview.mp4
The Swift Package Manager is a tool for automating the distribution of Swift code and is integrated into the swift
compiler.
Once you have your Swift package set up, adding PDF_Generator as a dependency is as easy as adding it to the dependencies
value of your Package.swift
.
dependencies: [
.Package(url: "https://github.com/nazar-41/pdf-generator", branch: .main)
]
First thing is to import the framework. See the Installation instructions on how to add the framework to your project.
import PDF_Generator
import SwiftUI
import PDF_Generator
struct ContentView: View {
@State private var viewModel: VM_ContentView = .init()
var body: some View {
VStack {
// Button to generate PDF
PDFGeneratingButton {
ContentView() // view that should be converted
} label: {
Label("Convert", systemImage: "square.and.arrow.up")
.font(.headline)
}
ScrollView(showsIndicators: true) {
LazyVGrid(columns: viewModel.columns) {
ForEach(viewModel.gridItems, id: \.self) { item in
Text("\(item)")
.frame(width: 100, height: 100)
.background(viewModel.randomColor())
.cornerRadius(20)
.padding(.horizontal)
}
}
.padding(.top, 50)
}
}
}
}
PDFGeneratingButton
: A SwiftUI button that triggers the conversion of the specified view (ContentView()
in this case) into a PDF. Customize the button's label to fit your design preferences.ContentView()
: Replace this with any SwiftUI view you want to convert to PDF.Label("Convert", systemImage: "square.and.arrow.up")
: The label for the button, featuring a system image and headline font styling.