My iOS Developer Courses - seanallen.teachable.com
@SanusiAdewaleАй бұрын
coming to this for like the 5th time this year. Your content is soo good!
@MrMm20042 жыл бұрын
Hi Sean, another great tutorial! I have searched everywhere for this exact tutorial and couldn't find it anywhere and you explain it literally in one minute! Perfect, thanks!
@seanallen Жыл бұрын
Happy to help, Marcus!
@chadgoodyear79052 жыл бұрын
Nice. I like the reverse video explanation order.
@seanallen2 жыл бұрын
Thanks! I thought a lot about that actually... I wanted those who are familiar with SwiftUI to get the information ASAP, but also didn't want to neglect those still just learning.
@ColeDano2 жыл бұрын
Good stuff Sean. I'm really liking the iOS 16 updates. Using this right now in my first Indy app. Loved your courses BTW, they really helped a lot!
@seanallen2 жыл бұрын
Glad you enjoyed them, Cole!
@EmmaKAlexandra2 жыл бұрын
As usual with SwiftUI, I spent a few days building something like this for my app last year. Now, Apple built it in & obsoleted my custom code. Thank goodness!
@seanallen2 жыл бұрын
On the bright side... deleting old code is one of the best feelings in the world :)
@EmmaKAlexandra2 жыл бұрын
@@seanallen I love a red diff
@martinmajewski2 жыл бұрын
Good tutorial, thanks. One note: SF Symbols are flattened (pixelated) when applying the resizable modifier. You should thread your SFSymbols image like a text and change its size with .font(...). This way, it aligns with, e.g., neighboring text and stays dynamic to all the fancy UI effects, like Dark Mode.
@midnight1612 жыл бұрын
Thank you for this! Just what I was looking for!
@seanallen2 жыл бұрын
Happy to help, Amar!
@TheChickenDuy2 жыл бұрын
Can't make the dimmable background interactable and can't make it resize to content inside :(
@af2b Жыл бұрын
Amazing!
@seanallen Жыл бұрын
Thank you! Cheers!
@ChristopherCricketWallace2 жыл бұрын
well done, sir
@seanallen2 жыл бұрын
Thanks Chris!
@tripleverbosity Жыл бұрын
Thanks Sean, nice quick tutorial. I was wondering if you knew of a way to size the sheet based on the size of the context using GeometryReader. I’ve been playing around with it but can’t get it to work. Ideally I’d like my sheet to be just big enough to fit the content.
@piyushsharma16382 жыл бұрын
We cant interact the underneath map using these sheets, half modal purpose is to have interactive views simultaneously, any solution for that?
@rasheshbosamiya148210 ай бұрын
I have a TabView and want to present Bottom Sheet above the TabView, how can I achieve?
@perrygupta Жыл бұрын
ios 16 only, thats a bummer
@mkhasson972 жыл бұрын
Nice tutorial 👏🏻👏🏻👏🏻
@seanallen2 жыл бұрын
Thank you 😊
@vanylaskywalker11 ай бұрын
How do you align the content of the sheet to the top instead of centered.
@ahmedhamdy7168 Жыл бұрын
is there any option to adjust the height of bottom sheet if my app support iOS 15 ?
@Stricken17410 ай бұрын
Unfortunately, Apple doesn't give us the ability to customize the sheet itself. For example, corner radius or background color. Correct me if I'm dumb)
@TerranceBaptiste1977 Жыл бұрын
Love the video but now I am stuck with my own mini project. I hope somebody sees this comment, here goes... I have an array of values that I want to display on a sheet like this video but each time I click on let's say an image, it only shows the first set of values. Am I missing something?
@adamhelman33112 жыл бұрын
About the button- would it have worked just as well if the button style struct that conformed to ButtonStyle was instead conformed to View and then have had the button’s label been an instance of that view?
@seanallen2 жыл бұрын
Yup, that is another way of doing it.
@EmanNollase2 жыл бұрын
so sad that this only available on iOS16 and newer
@kironet2 жыл бұрын
I wish they'd port it to iso15... Does anyone know a good package? :D
@juancarlosrangel2128 Жыл бұрын
Hello, I have a question. How Can I detect when de .sheet is dragged? And get his size height? Thank you
@michaelheitz1808 Жыл бұрын
did you figure this out?
@zehaolee72012 жыл бұрын
how to make the contents of sheet react to the change of fraction?
@seanallen2 жыл бұрын
I don't know. I would need to research that. An app like Maps has the entire view in the sheet, but you can only see the top half of it when in the .medium size. When you swipe up to .large, you see the entire view. But it's not dynamically changing... it's always there. You just can't see it in .medium.
@benjimandel48362 жыл бұрын
Is it possible to see/read the fraction value in the view code of the sheet? i.e., to show less or more content based on the size?
@benjimandel48362 жыл бұрын
Amazing tutorial btw
@seanallen2 жыл бұрын
Not that I'm aware of. But this is a brand new modifier in iOS 16. I would need to dig deeper to see if this was possible. An app like Maps has the entire view in the sheet, but you can only see the top half of it when in the .medium size. When you swipe up to .large, you see the entire view. But it's not dynamically changing... it's always there. You just can't see it in .medium.
@benjimandel48362 жыл бұрын
@@seanallen Got it. Thanks. I thought it would allow for some cool animation, like buttons with icons expanding and adding text. Guess will have to wait to future updates. Maybe it will be added.
@colephelps73212 жыл бұрын
Show what works in ios 14
@seanallen2 жыл бұрын
You need to build your own custom view pre-iOS 16
@colephelps73212 жыл бұрын
@@seanallen Okay. Is there a tutorial from you on how to build such custom UI?