Post

Replies

Boosts

Views

Activity

Reply to No "Create Pull Request" option in XCode 13.1
Interesting, and strange. I'm not sure what you mean by "Create Pull Request button in the branches drop-down"... I don't see that button anywhere. Where are you expecting it to be? For an Xcode project with a local repository and a remote repository, I see: Source Control > Create Pull Request... I have full access to the remote repository, could that be important? For an Xcode project with a local repository, but no remote repository, I have no option: Source Control > Create Pull Request... (It isn't greyed-out, it doesn't appear at all)
Nov ’21
Reply to Xcode simulator does not show the same as Preview
Your code samples are too messed up, to make any sense of them. Paste the code into a new answer: ...as a "Code Block" ...using "Paste and Match Style" A "Code Block" puts one line before and one line after your code, each of those two lines containing three "backtick" characters. Then your code should format nicely. Once people can read your code, they may be able to help with your problem! Properly pasted code should look nice, like this: @State var accesibilidadActivaTexto = false //Cambiar a true @State var separacioTexto: CGFloat = 0 // Separación entre texto @State var separacionTextoiPad: CGFloat = 0 // etc...
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Nov ’21
Reply to Xcode simulator does not show the same as Preview
We are getting there, but we still need: tamanosDispositivos Also, your property names (correctly) begin with a lowercase letter, but you should capitalize your struct names, so struct tarjetaMomentoDia: View { struct tarjMomentoDia: Identifiable, Hashable { struct interfazCambiante { should be: struct TarjetaMomentoDia: View { struct TarjMomentoDia: Identifiable, Hashable { struct InterfazCambiante {
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Nov ’21
Reply to SwiftUI NavLink Dismiss
To perform an action when a View disappears, you can use onDisappear func onDisappear(perform action: (() -> Void)? = nil) -> some View To update a value from an enclosing View, you could use a Binding.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Nov ’21