Flutter - How To ALWAYS Know What Type A Widget Property Takes

Поділитися
Вставка
  • Опубліковано 18 гру 2024

КОМЕНТАРІ • 23

  • @MrFACTS-mk1ib
    @MrFACTS-mk1ib 2 роки тому +4

    Wait I thought you were rocking millions views on this. This is the most helpful video indeed. From someone who always have issues with classes and implementations like this. This made me feel so good to know how they all work.
    Million Thanks.

  • @adelodunadeyemi4320
    @adelodunadeyemi4320 2 роки тому +2

    Man, you have no idea how helpful this is
    It can be do hard trying to figure out exactly what to use
    For example:Icon(
    icon: Icon(Icons.blue)
    )
    How do you even know which icon is which
    Thanks again man

  • @pradeepbagri4810
    @pradeepbagri4810 2 роки тому

    I love learning from FLUTTER MENTOR ,very good and helpful content there... ❤

  • @Kay-rz7kw
    @Kay-rz7kw 2 роки тому

    This is a very important video and seems underrated. Thanks for this.

  • @tonhom260
    @tonhom260 2 роки тому

    Help me a lot as i am just a beginer... Thank you ❤️❤️❤️

  • @asheshshrestha9043
    @asheshshrestha9043 3 роки тому

    This is super awesome. Like you mentioned, learning what a widget property would take would help a lot. Hope to learn a lot from you in coming days.

  • @darul-asar381
    @darul-asar381 3 роки тому +1

    Amazing very often I met such problems when inside a property it is not specified which class it accepts. 👍🤝

    • @FlutterMentor
      @FlutterMentor  3 роки тому +1

      I know the pain haha! Glad this helped

  • @qeuletra9772
    @qeuletra9772 3 роки тому

    This help me a lot, thanks

  • @freakout6764
    @freakout6764 3 роки тому

    Amazing video thanks

  • @ahmedghost4010
    @ahmedghost4010 2 роки тому

    Thanks it was very helpfull

  • @veerpatel6719
    @veerpatel6719 2 роки тому

    What chrome extension is that to show you related searched?

  • @ITEngineer902
    @ITEngineer902 2 роки тому

    Wow❤thanks

  • @marflage
    @marflage 3 роки тому +1

    Can't thank you enough for this video. This specific thing about Flutter is the most annoying. Countless times I have scratched my head hard in figuring out what widget is an enumeration, abstract class, named constructor, etc. While we are at it, could anybody explain to me the difference between inherited widgets' and named constructors' use cases? Thanks in advance!

    • @FlutterMentor
      @FlutterMentor  3 роки тому +2

      Thanks for watching! Well, basically named constructors are just a way to send information from one widget to another. But only between widgets that are directly below each other in the widget tree. The inherited widgets are meant to send information between widgets regardless of how far they are from each other in the widget tree (there's this video made by the Flutter team that explains inherited widgets more thoroughly: ua-cam.com/video/Zbm3hjPjQMk/v-deo.html)

    • @marflage
      @marflage 3 роки тому +1

      @@FlutterMentor thanks. I will surely check it out

  • @kamalCode
    @kamalCode 3 роки тому +1

    Sir, flutter how to use widget property and methods for each widgets

    • @FlutterMentor
      @FlutterMentor  3 роки тому

      Just to make sure I understood, do you mean you'd like to see what to do to always know what kind of function/method widget properties take?

    • @kamalCode
      @kamalCode 3 роки тому

      Ex. Text widget (how to use all properties and methods)how to read and documentation for new developer

    • @FlutterMentor
      @FlutterMentor  3 роки тому

      @@kamalCode got it. Thanks! That's a good idea I'll do it in the future