Skip to content

Commit

Permalink
Merge pull request #2 from DamianMehers/MakeViewPublic
Browse files Browse the repository at this point in the history
Make the main view public
  • Loading branch information
DamianMehers authored Apr 4, 2021
2 parents 1790e08 + 4f76138 commit 9f3a472
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
## User settings
xcuserdata/

.swiftpm/

## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
*.xcscmblueprint
*.xccheckout
Expand Down
4 changes: 2 additions & 2 deletions Sources/SvgVectorView/SvgVectorView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import SwiftUI

struct SvgVectorView: View {
public struct SvgVectorView: View {

let pathData: String

Expand Down Expand Up @@ -37,7 +37,7 @@ struct SvgVectorView: View {



var body: some View {
public var body: some View {
Path { path in
var parser = PathDataParser(pathData: pathData)
let commands = parser.parse()
Expand Down

0 comments on commit 9f3a472

Please sign in to comment.