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

แชร์
ฝัง
  • เผยแพร่เมื่อ 24 ต.ค. 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 TH-cam. 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 !! ❤️

  • @andrejkling3886
    @andrejkling3886 2 ปีที่แล้ว +1

    Excellent presentation… 💫

  • @justin747
    @justin747 2 ปีที่แล้ว +2

    A++ Video Editing

  • @tiIIus
    @tiIIus 2 ปีที่แล้ว +2

    Wow. Looks great!

  • @indomitabletr1834
    @indomitabletr1834 2 ปีที่แล้ว +2

    nice afford, nothing to say. thank you 😊

  • @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 )

  • @mattross9992
    @mattross9992 ปีที่แล้ว

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

  • @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✌️

  • @EmanNollase
    @EmanNollase 2 ปีที่แล้ว

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

  • @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?

    • @陈凝-z3s
      @陈凝-z3s 2 ปีที่แล้ว

      ye!I also want it

  • @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 2 ปีที่แล้ว

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