Hi,
I have a form on an iPad App I'm developing and the form have text field at its bottom when tapping on it the keyboard cover those text fields how to solve this issue leave a hug gap at bottom of the form so text field jump to top when keyboard shows ?
Kind Regards
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
Hi,
Im trying to customize the button that appear when swiping a for each list for deleting trying to show a red circle and a white trash icon inside it, but instead I get a white empty button ?
.swipeActions(edge: .trailing) {
Button {
deletePatient(patient: patient)
} label: {
ZStack {
Circle()
.fill(Color.red)
.frame(width: 50, height: 50)
Image(systemName: "trash")
.foregroundColor(.white)
}
}
.tint(.white)
}
Topic:
UI Frameworks
SubTopic:
SwiftUI
Hi,
Before the iOS 17.2 update the saving behavior of SwiftData was very straightforward, by default it saves to persistence storage and can be configured to save in memory only. Now it saves to memory by default and to make it save to persistence storage we need to use modelContext.Save(). But if we don't quit the App the changes will be saved after a while to persistence storage even without running modelContext.Save() ! How confusing can that be for both developer and the user ! Am I missing something here ?
--
Kind Regards
Hi,
Is there math functions in Swift built in, such as Sin, Cos, Log etc ?
Kindest Regards
Hi,
How to hide the Chevron icon from a list rows in SwiftUI ?
Kindest Regards
Topic:
UI Frameworks
SubTopic:
SwiftUI
Hi,
how to reserve an App name for an App I’m developing ?
—
Kind Regards
Topic:
App Store Distribution & Marketing
SubTopic:
App Store Connect