Create custom Bindings in SwiftUI | Advanced Learning #27

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

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

  • @kavinda_dilshan_paramsoodi
    @kavinda_dilshan_paramsoodi 11 месяцев назад +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

  • @ademdizdaroglu6877
    @ademdizdaroglu6877 2 месяца назад

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

  • @ВадимМартыненко-в4н
    @ВадимМартыненко-в4н 9 месяцев назад +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

  • @zak9828Aztec
    @zak9828Aztec 3 месяца назад

    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.

  • @MollyShows-ve9ow
    @MollyShows-ve9ow 2 месяца назад

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

  • @mica00ela
    @mica00ela 3 месяца назад +1

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

  • @farhad28881987
    @farhad28881987 11 месяцев назад

    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  11 месяцев назад

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

  • @RobertHolzapfel
    @RobertHolzapfel 11 месяцев назад

    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.

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

  • @josemanuelortizsanchez4983
    @josemanuelortizsanchez4983 11 месяцев назад

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

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

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

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

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

  • @BlindyOTB
    @BlindyOTB Год назад +2

    Love the videos ❤

  • @andresraigoza2082
    @andresraigoza2082 8 месяцев назад

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

  • @Luizin07
    @Luizin07 6 месяцев назад

    Such a good video... Thanks a lot!

  • @AHTUCYKA
    @AHTUCYKA 7 месяцев назад

    Thanks so much for the great video!

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

    Very good inside about Binding and property wrapper.

  • @niklasopf
    @niklasopf 14 дней назад

    Great video!

  • @TOMATOMAT7
    @TOMATOMAT7 11 месяцев назад

    as always, it's the best and unique lecture

  • @sergiocardoso8191
    @sergiocardoso8191 11 месяцев назад

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

  • @w0mblemania
    @w0mblemania 10 месяцев назад

    This was very well explained. Thanks.

  • @NastyHangover
    @NastyHangover 10 месяцев назад

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

  • @JumpingCow
    @JumpingCow 11 месяцев назад

    Totally cool! Another dark SwiftUI mystery solved!

  • @magicinternetmoney8715
    @magicinternetmoney8715 11 месяцев назад

    amazing content

  • @jordancalhouncom
    @jordancalhouncom 11 месяцев назад

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

    • @SwiftfulThinking
      @SwiftfulThinking  11 месяцев назад

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

  • @eddiecarbon146
    @eddiecarbon146 11 месяцев назад

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

  • @chesterman18g
    @chesterman18g 11 месяцев назад

    love it! TY

  • @PaulEwers
    @PaulEwers 6 месяцев назад

    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 10 месяцев назад

    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🤯