Micro-Interactions - Animated Tab Icons - Xcode 14 - SwiftUI Tutorials

Поделиться
HTML-код
  • Опубликовано: 4 сен 2024

Комментарии • 23

  • @timmeyerdiercks
    @timmeyerdiercks 2 года назад +15

    Bro, you REVOLUTIONIZED the world of SwiftUI tutorials with your videos!

  • @qusaigamer4878
    @qusaigamer4878 2 года назад +2

    I don’t write comments usually in RUclips. But broooo what are you doing ?!!!!
    The current project I’m working on is about to get finished in few weeks, 80% of the features I got from your videos !
    Really appreciate you and the thing you are doing, especially with the Firestore videos, you recreate a new database every video to not miss any single step of the tutorial.
    You can’t believe how much “Firestore pagination” tutorial helped me !!
    Bro really wish you the best !! ❤️

  • @justin747
    @justin747 2 года назад +2

    A++ Video Editing

  • @andrejkling3886
    @andrejkling3886 2 года назад +1

    Excellent presentation… 💫

  • @tiIIus
    @tiIIus 2 года назад +2

    Wow. Looks great!

  • @arnavodkaa
    @arnavodkaa 2 года назад +1

    Fantastic video! I love the new style of this channel. One thing I noticed is the incorrect spelling of "Watching" in the end credits. Again, Great video man!

    • @Kavsoft
      @Kavsoft  2 года назад

      Oh thanks !!!
      I will update it✌️

  • @indomitabletr1834
    @indomitabletr1834 2 года назад +2

    nice afford, nothing to say. thank you 😊

  • @EmanNollase
    @EmanNollase 2 года назад

    awesome tutorial!!! nice new logo also, hope it is not related to Kotlin? hehehehe 👍👍👍

  • @mattross9992
    @mattross9992 Год назад

    Also did they change the function name in the package to be LottieAnimationView?

  • @ainanirina758
    @ainanirina758 Год назад

    Nice tutorial! Please how did you do the mock-up video at the beginning?

    • @Kavsoft
      @Kavsoft  Год назад

      I edited the video with After Effects (Beginning Part )

  • @teavamcc6614
    @teavamcc6614 Год назад

    Why not download the lottie file directly? ??

  • @athuynh8599
    @athuynh8599 2 года назад

    Sir, i looking for Mini bar in music app like spotify as your curent mini bar can't work due to while we click to a new song mini shoube be change or mini bar must be exesting in main screen or other screen while the music or song choose.

  • @arrowfunction3200
    @arrowfunction3200 2 года назад

    can you make full prpjecet with swiftui

  • @hakankumdakc9233
    @hakankumdakc9233 2 года назад

    Could you do some UIKit videos?

  • @mattross9992
    @mattross9992 Год назад

    Quick question. I am running into an error on the resizable view where it does not like to seem adding the constraints to [constraint]. This is the error...
    "Cannot convert value of type '[NSLayoutConstraint]' to expected argument type 'NSLayoutConstraint'"
    Also I have the layout exactly like you do in the video and (that error aside) I am not seeing any icons when I add the icon.lottieView to the ResizableLottieView in the main view thread. I am not sure if that is due to the error above or not.

    • @Kavsoft
      @Kavsoft  Год назад

      The Lottie SDK has been updated. Simply update AnimationView to LottieAnimationView in each instance of the app and put the code inside the updateUIView inside the DispatchQueue.main

    • @mattross9992
      @mattross9992 Год назад

      @@Kavsoft That makes sense I will give it a shot. What threw me the most is the euro about the constraints. After doing it like constraint = [ code ] then doing to.addConstraint(constraints) it was throwing the error I listed above about "Cannot convert value of type '[NSLayoutConstraint]' to expected argument type 'NSLayoutConstraint"
      Do I need to do anything to resolve that error?

  • @Patresko-SVK
    @Patresko-SVK 2 года назад

    UiTabBar.appearance().isHidden does not work anymore on iOS 16. So in case of more than 4 tabs is visible more button in navigationBar. Also toolbar(.hidden, for: .tabBar) does not fix more button in iOS 16

    • @Kavsoft
      @Kavsoft  2 года назад

      From iOS 16+
      Just use this trick: insert this modifier for the first tab inside the TabView and not the outside of the TabView.
      TabView{
      Tab1()
      .toolbar(.hidden, for: .tabBar)
      Tab2()
      Tab3()….
      }

    • @tooth2302
      @tooth2302 Год назад

      @@Kavsoft I hope your doing well but I am somewhat confused what you mean by this cause I am getting the same error.