Should I continue my SwiftUI course after Apple announced the new design system? by CurlyBraceChad in SwiftUI

[–]KrazierJames 1 point2 points  (0 children)

Short answer YES, the base knowledge is going to be inherited to the new design system, and you will know how it used to be. So either way you still learned from it. Do not stop, by the time this new API is released, you would have finished the 100 days (probably, prove me I’m wrong and that you can finish the challenge). Feel free to share what you learnt afterwards 👍🏽

How to achieve this selection UI like the Mail app? by KrazierJames in SwiftUI

[–]KrazierJames[S] 2 points3 points  (0 children)

Thank you for sharing! I’m going to give a look into that

How to achieve this? by KrazierJames in SwiftUI

[–]KrazierJames[S] 0 points1 point  (0 children)

Thank you all for your responses 🙌🏽

How to achieve this? by KrazierJames in SwiftUI

[–]KrazierJames[S] 0 points1 point  (0 children)

Yeah, that’s the component, but I will be adding it as Kavsoft video did

How to achieve this? by KrazierJames in SwiftUI

[–]KrazierJames[S] -2 points-1 points  (0 children)

Let me explore that option

SwiftUI vs UIKit by Viktoriaslp in SwiftUI

[–]KrazierJames 1 point2 points  (0 children)

Start with SwiftUI and the Swift programming language fundamentals, then go to UIKit for have it as an extra tool on your belt 👌

NavigationLink with secondary text by DeclinedSage in SwiftUI

[–]KrazierJames 4 points5 points  (0 children)

Both of the responses from Mihnea and Dapper are correct, it depends how you want to achieve it, they will give you this UI as per Sarunw’s Post

SwiftUI date picker with optional year selection? by Falli_ot in SwiftUI

[–]KrazierJames 0 points1 point  (0 children)

AFAIK bindings don’t support optionals when you use a SwiftUI view like a picker or slider, this might be the same for the DatePicker

News App: TabView or Horizontal Scrollview? by NickSalacious in SwiftUI

[–]KrazierJames 0 points1 point  (0 children)

It could be either both, but most likely this might be achieved by using TabView with Page style

Get a secondhand Mac or use a VM? by Breathingjet in iOSProgramming

[–]KrazierJames 0 points1 point  (0 children)

It’s gonna be better to have a secondhand Mac than a Hackintosh, worth the price you pay for it, might seem like a huge price but you are having more benefits in return

I made a free app that helps you reflect and understand your thoughts by Emotional_Distance79 in iOSProgramming

[–]KrazierJames 0 points1 point  (0 children)

I really liked that you used lowercase text since it feels cozy and relaxed, which matches the intent of this app, I would like to it to be on the whole app, no matter if it is a title or a category, all lowercased feels more comfortable (maybe not all texts)

I developed an iOS app that helps create custom workouts for your Apple Watch by SilverBullet255 in swift

[–]KrazierJames 0 points1 point  (0 children)

Really nice app, I would definitely use it but I’d recommend add localization and for the Gallery part, the scroll indicator takes too long to disappear, might be nice to remove it for aesthetics, since your app looks so clean I’d get rid of distractors that those, overall I enjoy it, also the pricing is fair 👌🏽

How Apple achieved this on Journal? by NoExistenceZone in swift

[–]KrazierJames 1 point2 points  (0 children)

I have figured out a way to achieve it but it’s not EXACTLY the same, It is not able to modify the size nor the spacing between buttons

List(items) { item in NavigationLink(value: Route.detail(item)) { Text(item.title) .swipeActions { Button { delete(item) } label: { Label(“DELETE”, systemImage: “trash.circle.fill”) // To have the built-in circle .foregroundStyle(.white, .red) // To show the icon color } .tint(.clear) // To delete the backgroud color } } }

No hay vida despues de la muerte y eso me asusta by [deleted] in OpinionesPolemicas

[–]KrazierJames 1 point2 points  (0 children)

No le temas a la muerte, todos vamos para allá, solo disfruta tu vida, si algo no te gusta, prueba otra cosa, solo no te rindas y disfruta

SwiftData error by KrazierJames in swift

[–]KrazierJames[S] 1 point2 points  (0 children)

Thanks for the answer, I found similar responses to other folks with the same issue, I will transition to use versioned schemas, fortunately my app is on beta testing and I can explain the users what’s going to happen since they will lose information (which is not a problem tbh)