A Guide To Futures in Flutter | Beginners Guide |

Поділитися
Вставка
  • Опубліковано 25 лип 2019
  • This video goes over everything the Future class offers and how to make use of it.
    Written: www.filledstacks.com/post/com...
  • Наука та технологія

КОМЕНТАРІ • 30

  • @buck-johnson
    @buck-johnson 3 роки тому

    Excellent video thanks.

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

      You're welcome. Thanks for letting me know. It helps :)

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

    Great video, thank you

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

      You're welcome. Thanks for watching.

  • @devaccount3093
    @devaccount3093 5 років тому +6

    been waiting for this, so confuse about my future xD

    • @FilledStacks
      @FilledStacks  5 років тому

      Haha hopefully it's filled with tons of FilledStacks videos 😁

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

      xD

  • @nickjensen3632
    @nickjensen3632 4 роки тому

    Awesome!

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

    good explanation Thanks

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

      You're very welcome. Thanks for watching.

  • @krishnakumarramachandran5888
    @krishnakumarramachandran5888 4 роки тому

    Super Explanation brother.

  • @wearecode9199
    @wearecode9199 4 роки тому

    very good , would love to see uses of stream builders and queries with Firebase or some other api. Thanks for doing this.

    • @FilledStacks
      @FilledStacks  4 роки тому +1

      Thank you. I have quite a few of that. I don't use StreamBuilders as I like to control my stream subscriptions myself.

  • @masebinubenjamin8267
    @masebinubenjamin8267 5 років тому +1

    Can you make a video on streams, i am trying to listen to a stream to know when it is empty and when it has data.

    • @FilledStacks
      @FilledStacks  5 років тому

      I can do streams as well. You can't check if a stream "has" a value. You put a value on it when you have one. If you don't add any to the controller you'll have no value so it's "empty" until you broadcast a value over it.

  • @dilenmay8888
    @dilenmay8888 5 років тому +1

    thanks 👍🏽👍🏽🇿🇦🇿🇦🇿🇦

  • @prayushdawda7807
    @prayushdawda7807 4 роки тому

    This was a pretty clear explanation but I think it would've been more useful if you had shown some simple use-cases where each concept is used. For example, A use-case for when the async await version should be used over the .then() would make things more apparent for a beginner such as myself.
    But great content overall!

    • @FilledStacks
      @FilledStacks  4 роки тому +1

      Thanks for the suggestion and thanks for watching. I didn't want to involve any Flutter code in the tutorial since I wanted to cover the future functionality only. But i can see how it would have helped. I'll keep it in mind for future videos.

  • @thomasmabika7291
    @thomasmabika7291 5 років тому +1

    can you please do a video on isolates, what they are, when and how they should be used?

  • @SafdarAliShah_TimeTraveler
    @SafdarAliShah_TimeTraveler 5 років тому

    Amazing ...1st Comment

    • @FilledStacks
      @FilledStacks  5 років тому +1

      Thanks for being so early 😁

    • @SafdarAliShah_TimeTraveler
      @SafdarAliShah_TimeTraveler 5 років тому

      @@FilledStacks Want to learn More ..... Make a Video on Deep Dive to Flutter Animation or Zero to Hero

    • @FilledStacks
      @FilledStacks  5 років тому +1

      My previous video is about animation controllers how to use them and what it's for. Everything after that will just be use case specific. I also have lots of flare videos for building and using animations.

    • @SafdarAliShah_TimeTraveler
      @SafdarAliShah_TimeTraveler 5 років тому +1

      @@FilledStacks I'm on to..

  • @iamtafara
    @iamtafara 4 роки тому

    its so annoying all tutorials on youtube just show futures on button press,, none shows a future that runs automatically on page load,,

    • @FilledStacks
      @FilledStacks  4 роки тому

      That's because it's the exact same code that's used in the button press. A future is called like a function. MyFuture() that's it. So instead of only showing how to call a future we're trying to add additional value into the mix by showing how to call it when pressing a button. But that also doesn't mean anything because calling a future is literally exactly the same in any situation where you want to call a future. The same as calling a function is the same in any situation.