Learn more SwiftUI, Swift & UIKit with my iOS developer courses at seanallen.teachable.com
@guilhermeteixeirademello49079 ай бұрын
Another day, another amazing video! Seriously, you and Paul are the bests in the game!!!
@seanallen9 ай бұрын
I appreciate that!
@nileshjdarji9 ай бұрын
All grids nicely summed up. 👍
@kwkistler8 ай бұрын
Thank you, Sean, fantastic tutorial I enjoy your teaching style, clear to the point. Keep up with the great content!
@seanallen8 ай бұрын
Much appreciated!
@MassonLifestyle8 ай бұрын
I just saw on Twitter that you got a full time job, congrats! You will be missed in here as you demystify half of this stuff for me. But with that being said, I'm happy for you. I can see why you would want to work with a team. Coding alone can get somewhat lonely sometimes and it's good to collaborate with others.
@seanallen8 ай бұрын
KZbin videos won't stop :). I can still knock them out on nights and weekends.
@mario_luis_dev9 ай бұрын
masterful explanation as always Sean, keep up the great work 🤝
@seanallen9 ай бұрын
Appreciate it!
@byhabiboff7 ай бұрын
I love You Sean Allen. Even though it's a subject I know, I always learn something every time I watch your videos.
@seanallen7 ай бұрын
I appreciate that!
@gangalo689 ай бұрын
Did you hack my search history?! 😄
@seanallen9 ай бұрын
Yup
@zaid.qattan8 ай бұрын
Can you please do a full course or a BootCamp for SwiftUI?
@seanallen8 ай бұрын
Check this out - kzbin.info/www/bejne/mGLSdGqpga6apqs
@emmanuelecorporente9 ай бұрын
Nice explanation!
@seanallen9 ай бұрын
Glad it was helpful!
@tariqAlmazyad9 ай бұрын
Last important info , what if you have last color as by itself ( as Array of 3 or 5 or 11 ) and you want you center it at the bottom of the view. Kinda trying to look for the best possible way to handle it .
@konstantin2158 ай бұрын
Nice guide. But what about waterfall layout?
@parladdgna7 күн бұрын
what if the content grows because of the dynamic font size ?
@X_BOZO9 ай бұрын
Thank you, but I have a question: how do I make them like buttons in all the pictures?
@seanallen9 ай бұрын
Can you elaborate on what you mean? I don’t understand the question.
@X_BOZO9 ай бұрын
@@seanallen I mean, how do I make this grid like an action
@w0mblemania8 ай бұрын
@@X_BOZO Just make each element a Button. Or, you can just add tap gestures to each element in the grid.
@josiasmayo72035 ай бұрын
ScrollView(.horizontal){ LazyHGrid(rows: rows, content: { ForEach(MockData.colors,id:\.self){ number in NavigationLink(destination: EmptyView() ){ RoundedRectangle(cornerRadius: 10) .fill(Color.red) .frame(width: 100) } } }) }