I'm installing directly through Xcode - onto an iPhone 7 Plus running i0S 15.5
Post
Replies
Boosts
Views
Activity
I found a solution.
I created my View in a separate file then embedded it as a List in my main view like so:
SoccerCell
HStack(alignment: .center, spacing: 15){
Image("jesse-lingard")
.resizable()
.scaledToFit()
.frame(height: 70)
.cornerRadius(8)
VStack(alignment: .leading, spacing: 5){
Text("Jesse Lingard")
.font(.system(size: 20, weight: .bold))
.lineLimit(1)
Text("Manchester United")
.foregroundColor(.secondary)
.font(.system(size: 15, weight: .regular))
}
}
Main content view
List(0 ..< 5) { item in
SoccerCell()
}
Hi.
If a user had purchased your app for free at the time, they will still receive free updates.
New users however would need to pay for the app.
Hope this helped.
Nevermind, I now have access to the program.
Have a read of this article:
https://www.theverge.com/tech/2016/9/23/13005160/imessage-sticker-pack-make-your-own-xcode-app-store
Hope that helps.