👋 Our "Launch Your First App" program will help you build up your iOS skills to publish your very own feature rich app even if you’re a beginner starting from scratch. cwc.to/youtubeoffer
Great video Chris! Is there a way to combine two sf symbols into one? I am trying to make a custom back button with the chevron.left and house.fill into one backBarButton…thanks!
Hello, thank you for taking the time to comment, I'm not sure if this is possible. Personally I haven't tried it yet. But maybe a custom icon will be a much better approach? -- Joash
@@CodeWithChris thank you so much for the response, the custom symbol approach is my next approach. I was able to get it to work in UIKit by placing the symbols into a container and assigning them to a button. SwiftUI is proving to be a bit more difficult
Hey Chris, very confusing... When I try to autocomplete the .bordered and others, nothing appears! However it does actually work saying this property may not be available in the context... Any reason why? HStack { TextField("What are you looking for?", text: $query) .textFieldStyle(.roundedBorder) Button("Go") { // TODO } .buttonStyle(.borderedProminent) // Defaults to autocompleting `_ style: PrimitiveButtonStyle` }
Yeah this also happen to me, and somehow I can't find any solution for the issue although force typing it wont give any error to the app, but please reply this comment if anyone know what causing the issue
👋 Our "Launch Your First App" program will help you build up your iOS skills to publish your very own feature rich app even if you’re a beginner starting from scratch. cwc.to/youtubeoffer
Amazing job, great explanation, you are the coding hero!
Great video series. thank you for your effort. One quick question, what theme do you use, can you share it to us? Thanks a lot
Great video Chris! Is there a way to combine two sf symbols into one? I am trying to make a custom back button with the chevron.left and house.fill into one backBarButton…thanks!
Hello, thank you for taking the time to comment, I'm not sure if this is possible. Personally I haven't tried it yet. But maybe a custom icon will be a much better approach?
-- Joash
@@CodeWithChris thank you so much for the response, the custom symbol approach is my next approach. I was able to get it to work in UIKit by placing the symbols into a container and assigning them to a button. SwiftUI is proving to be a bit more difficult
Anyone knows how to change buttons position? Please tell me how…
HStack, VStack, maybe also try some Padding? It depends
Hey Chris, very confusing... When I try to autocomplete the .bordered and others, nothing appears! However it does actually work saying this property may not be available in the context... Any reason why?
HStack {
TextField("What are you looking for?", text: $query)
.textFieldStyle(.roundedBorder)
Button("Go") {
// TODO
}
.buttonStyle(.borderedProminent) // Defaults to autocompleting `_ style: PrimitiveButtonStyle`
}
Same happens to mine, any idea of what it could be?
Yeah this also happen to me, and somehow I can't find any solution for the issue although force typing it wont give any error to the app, but please reply this comment if anyone know what causing the issue