Definitely my new favorite TabBar!!! isFavorite: Bool = true
@andrejkling3886 Жыл бұрын
Cool …👌💫 Tab position - special thanks
@zabaizabai2 Жыл бұрын
As always, amazing!
@mrwaseemmalik5766 Жыл бұрын
I really appreciate your efforts thanks ❤
@Minh-oq5ex Жыл бұрын
That's amazing. I was also troubled by how to do it with UIKit. Thanks in advance!
@MrUltraAlexander9 ай бұрын
Did you resolve it using UIKit? Maybe you have some tutorials or smth else?
@edwardhasted3849 Жыл бұрын
Exquisite, as always. The TabView in SwiftUI is very limited compared to the tabBarController in UI. Is there a way in your code to be able to deactivate specific buttons if not required?
@monnydhingra6369 Жыл бұрын
Amazing Excellent
@Swift_Coach_7 Жыл бұрын
Hey Kavosoft, Thanks for provide new things in every week, but I have an issue in given tab bar when I put some content in any and scrolle then there is some white space from tab bar. I think this is the padding from tab, so how we can resolve it.
@Kavsoft Жыл бұрын
Simply add negative padding to the tab view and padding to the contents of the tab view, like this: Tabview{ ScrollView { VStack {...} .padding(.bottom, 50) } } .padding(.bottom, -50)
@Swift_Coach_7 Жыл бұрын
@@KavsoftThanks for reply also it is working now
@rtorcato Жыл бұрын
it would be great if your zip downloads had a few preview screenshots along with the source code.
@JustinHold Жыл бұрын
Can you elaborate on the benefits of using an enum for each tab item name? I've never seen this approach for a tab bar in practice. Thanks!
@MuhammadAbdullah-qn4mi Жыл бұрын
Could you do this same animation in Swift(UITabbarControl)??
@christianmoreno7390 Жыл бұрын
Hey Kavosoft, I love your channel! Idk if this is possible, but can you do a video of a header changing opacity once the user scrolls down? For example, UberEats app has that feature on the restaurant page. When a user scrolls, the header goes from transparent to solid, and after it's solid, a horizontal scrollable tab view also appears. Thanks for all you do!
@Kavsoft Жыл бұрын
Send video to reply@kavsoft.dev I will try to replicate the animation✌️
@christianmoreno7390 Жыл бұрын
@@Kavsoft thank you. I sent the email to you
@anmolkalra17 Жыл бұрын
🔥
@redbookastrology9346 Жыл бұрын
I got the error on this line :- TabShape(midPoint: tabShapePosition.x). Could anyone can explain, How to resolve this?
@NikolaJovanovicSimunic10 ай бұрын
hmmm i have subscribed to your Patreon and downloaded the code. Have you tested it with showing keyboard? It has a flicker on the content of the view
@Kavsoft10 ай бұрын
Ignore the bottom safe area for the custom tab view by using .ignoreSafeArea(.keyboard)
@NikolaJovanovicSimunic10 ай бұрын
@@Kavsoft tried that-still the issue is here. But then i tested on real device and it’s not happening 🫣🤔🤷♂️
@NikolaJovanovicSimunic10 ай бұрын
@@Kavsoft hmm one more question i have...how would we hide the tabBar if needed? Thanks you