Create custom Bindings in SwiftUI | Advanced Learning #27

แชร์
ฝัง
  • เผยแพร่เมื่อ 4 พ.ย. 2024

ความคิดเห็น • 33

  • @kavinda_dilshan_paramsoodi
    @kavinda_dilshan_paramsoodi ปีที่แล้ว +4

    Most developers have the knowledge, but only a few can be an instructor. We're grateful that we have an instructor here. (👨🏻‍💻+👨🏻‍🏫) = NICK SARNO

  • @ВадимМартыненко-в4н
    @ВадимМартыненко-в4н 10 หลายเดือนก่อน +3

    thats crazy. u got the best videos, even english isn't my native language, i watch your videos and i understand everything, thank you so much, keep doing that

  • @MollyShows-ve9ow
    @MollyShows-ve9ow 3 หลายเดือนก่อน

    thanks so much for your lesson. Start embracing custom bindings from now on

  • @mica00ela
    @mica00ela 4 หลายเดือนก่อน +1

    Beautiful *chef's kiss*. I have literally been bewildered by bindings for years till today. Thank u

  • @ademdizdaroglu6877
    @ademdizdaroglu6877 3 หลายเดือนก่อน

    After this video, my perspective on coding changed a lot. Thank you very much.

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

    This video is going to simplify my SwiftUI views by making them display much clearer and simpler full screen view rendering logic. Thank you!

  • @zak9828Aztec
    @zak9828Aztec 4 หลายเดือนก่อน

    What a great tutorial. I was struggling with passing down a computed property as a binding to a child view (not to set it, just to get it) so my child view updates when the computed var in the parent changes). Learned how to do it from this video.

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

    Thanks Nick. U are a good teacher!
    Trying not to be picky but thought to mention that at the end, we wont need “where Value == Bool” for the extension as we made it generic.
    Keep it up 🎉❤

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

      Great catch 🤦‍♂️ glad someone’s paying attention 😂

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

    you are the best bro! thank to you I learned swift and swiftui programming correctly, not just coding but learning properly theory and understanding what im doing and why im using this or that function

  • @andresraigoza2082
    @andresraigoza2082 9 หลายเดือนก่อน

    Thank you so much for this awesome practical application of custom bindings 😀

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

    Totally cool! Another dark SwiftUI mystery solved!

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

    Nice building up the knowledge from 'old' school binding (without the type Binding) to the new school and even newest school of custom binding. You are a very good lecturer, thanks a lot for your work.

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

    What an interesting thing to learn, and that extension is pretty neat. Can't wait to see more! Just keep em coming 🎉

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

    Love the videos ❤

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

    You are the best at explaining SwiftUI concepts bro thank you for all the effort!!!

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

    Very good inside about Binding and property wrapper.

  • @NastyHangover
    @NastyHangover 11 หลายเดือนก่อน

    nice, now I can start to revisit around 250 files in my main project haha :D
    No seriously, thanks for creating such great material

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

    Really great content Nick....Thank's a lot.

  • @w0mblemania
    @w0mblemania 11 หลายเดือนก่อน

    This was very well explained. Thanks.

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

    as always, it's the best and unique lecture

  • @AHTUCYKA
    @AHTUCYKA 7 หลายเดือนก่อน

    Thanks so much for the great video!

  • @niklasopf
    @niklasopf หลายเดือนก่อน

    Great video!

  • @Luizin07
    @Luizin07 7 หลายเดือนก่อน

    Such a good video... Thanks a lot!

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

    love it! TY

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

    amazing content

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

    This video was fun to watch. When you making “Every view needs a body” t shirts?

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

      Haha that’s actually epic. You’ll get the first one free 😂

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

    Hi, could you make a video about publishing apps to App Store? Great materials!❤

  • @PaulEwers
    @PaulEwers 7 หลายเดือนก่อน

    The Binding extension looks really convenient for using with SwiftUI, but for general usage couldn't 'set' get called on a binding with a valid newValue, but the "if !newValue {" check would prevent anything from changing, so the next time 'get' is called on the binding, it would return false despite having just been set?

  • @barche75
    @barche75 11 หลายเดือนก่อน

    Hey, great tutorial, thank you. I just wondering is it possible to convert one binding to another? For example we have UserModel and our subview have own ViewModel. Can we some how cast UserModel to ViewModel and back automatically. I tried Binding with "get" and "set" and result is: no issues with "get" - just init ViewModel with UserModel, BUT with "set" it's not sow easy - i have to convert ViewModel to UserModel AND update UserModel's changed properties and then replace old UserModel with new UserModel🤯