Flutter Europe: Optimizing your Flutter App

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

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

  • @ResoCoder
    @ResoCoder 4 года назад +29

    You may not know it yet but 2:20 is what you came here for.

    • @rebarius
      @rebarius 4 года назад

      that's a conspiracy theory 😜

    • @arifikhsanudin9724
      @arifikhsanudin9724 4 года назад +1

      I'm waiting for your ddd course

  • @ВикторЦай-л7я
    @ВикторЦай-л7я 2 года назад +2

    Thank you Filip and Flutter team!

  • @andrearsenault7284
    @andrearsenault7284 4 года назад +6

    At 21:25, why is it a performance improvement to break _buildLineWidget() out into a new StatelessWidget? Isn’t Padding (the parent of all 8 children) already a StatelessWidget? Why does wrapping Padding in a custom Widget reduce the number of widgets built?

    • @EagleZH23
      @EagleZH23 4 года назад +2

      I was thinking the same thing

    • @HoaHoang-qj1vl
      @HoaHoang-qj1vl 4 года назад

      I think if we break it into another widget instead of writing method inside old widget. Flutter can reuse the new widget because when Flutter checks it has a same runtime type. Please correct me if I am wrong, it's my guess :D

    • @sadhlife
      @sadhlife 4 года назад

      @@HoaHoang-qj1vl nah that's not the reason

    • @sadhlife
      @sadhlife 4 года назад +3

      the reason is that usually an entire widget gets painted together. that's what the build method is for.
      if you have your own method that creates the widgets flutter can never know what it is building, and hence cannot apply any internal optimisations. it is therefore preferred to use stateless widgets instead of methods that return a widget

    • @OliverRhyme
      @OliverRhyme 3 года назад

      I think because it can reuse the same widget, because has basically no change in attributes or structure, so no need to recreate the render element for each rebuild

  • @rebarius
    @rebarius 4 года назад +9

    I like Filip's shirt with the bicycle 👌🏼

  • @DominikRoszkowski
    @DominikRoszkowski 4 года назад +4

    I really enjoyed this overview of all the great tools available for us right now

  • @lyricsmint567
    @lyricsmint567 4 года назад +33

    Flutter needs a beginner series. So newbies can learn from officials.

    • @TheVikke2
      @TheVikke2 4 года назад +20

      There is such a thing called "the boring show"

    • @sivasankarant9195
      @sivasankarant9195 4 года назад

      Definitely 👍

    • @mshahzaib1629
      @mshahzaib1629 4 года назад +4

      You may learn it by Max on Udemy

    • @ScotCinamon
      @ScotCinamon 4 года назад +1

      ruclips.net/video/x0uinJvhNxI/видео.html

    • @jan3477
      @jan3477 4 года назад

      @@vasylmayovets8778 I can highly recommend that !

  • @Tomokeneable
    @Tomokeneable 4 года назад +1

    22:00 do I understand correctly then that using statelessWidget instead of method increases performance? So far, I tried to use methods wherever possible and tried to keep one stanelessWidget per page/view. Is this a bad practice?

    • @michasengotta2295
      @michasengotta2295 3 года назад +5

      I was also wondering what he meant, because I don't think it makes any difference where the child widgets are built.

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

      @@michasengotta2295It makes a different because flutter cant reuse those widget if they come from a method

  • @antobine
    @antobine 4 года назад +3

    Amazing talk! Very interesting points, hope to see more on this topic

  • @captainbear3110
    @captainbear3110 4 года назад +2

    Listview scrolling is still laggy for dynamic height items especially in Android. It is affecting the performance

  • @deepaklohmod396
    @deepaklohmod396 3 года назад

    Like you said that if we use stateless widget then all the child of it are considered as a single widget is rendered so is it same for a statefull widget also?

  • @shashikantdurge
    @shashikantdurge 4 года назад

    Nice & Important topic. Looking forward to such advanced important topics ahead.

  • @YaoBinThen
    @YaoBinThen 4 года назад +24

    Was thinking why everything looks so smooth, then I realized I'm on 2x playback 😂

    • @EdmoreGonese
      @EdmoreGonese 3 года назад

      Oh makes sense 😆 Like I was missing all the jank

  • @serdarcoskun8367
    @serdarcoskun8367 4 года назад +2

    I really enjoyed the video, quite informative. looking forward for new presentations. 👍

  • @aal9664
    @aal9664 4 года назад

    How does web scrapping work when using the flutter? Using if course the backend what is the best and easiest method in bring that in use?

  • @mohamad.elbohsaly
    @mohamad.elbohsaly 2 года назад

    Should I run profiling on old and new phones? Or not necessarily

  • @RiceCooker-hp5px
    @RiceCooker-hp5px 4 года назад +4

    w8, is this a reupload?

  • @Gentleman217
    @Gentleman217 3 года назад

    what is the tool filip is using to share phone screen?

  • @thisispax
    @thisispax 4 года назад +5

    I would like that 8hr+ workshop please. Even if broken up in separate sessions. 🙇🏻‍♀️

  • @tienduy1296
    @tienduy1296 3 года назад

    thank you!!! The presentation was great >3

  • @JoonBeh
    @JoonBeh 4 года назад

    When is the web app going to be released officially? I've been waiting over 1 year.

  • @digiunlimited3000
    @digiunlimited3000 4 года назад

    Good talk as always Filip

  • @ouya6967
    @ouya6967 4 года назад

    22:00 StatelessWidget is fater than function?

    • @kazukihiromoshito2935
      @kazukihiromoshito2935 4 года назад

      widgets use keys to cache whatever's not changing so it won't practically rebuild everything, but in the case of function-made widgets, everything is rebuilt

    • @OliverRhyme
      @OliverRhyme 3 года назад

      @@kazukihiromoshito2935 it does not use the keys, but rather the element and thus the render object. But determining if the widget needs another element or can just reuse the same element depends on the runtime type (and keys if present)

  • @mohamad.elbohsaly
    @mohamad.elbohsaly 2 года назад

    But I wish someone can help in analyzing the graph (jank), so that I can mitigate the sluggishness.

  • @wearecode9199
    @wearecode9199 4 года назад

    Hello, i am currently learning flutter , but i always come across things that i never knew i mean, there s always something else, and i am wondering where you guys learn all this ? University , bought courses, just documentation ? any advice how to gain this knowledge gradually and without anxiety ?

    • @wearecode9199
      @wearecode9199 4 года назад

      @@filiphracek4240 i do agree with that, but still there is not the feel of "gradual" progression, like legos , i guess its just me :(

    • @wearecode9199
      @wearecode9199 4 года назад +2

      @@filiphracek4240 wait are you the actual Filip? thats a huge honor if yes

    • @sadhlife
      @sadhlife 4 года назад

      @@wearecode9199 he is

    • @sadhlife
      @sadhlife 4 года назад

      @@wearecode9199 I'll suggest you try out video courses like Angela yu or udemy if you feel the documentation is too hard

    • @wearecode9199
      @wearecode9199 4 года назад

      @@sadhlife Been there done those - i am better know - thanks man

  • @littlebearandchicken2077
    @littlebearandchicken2077 4 года назад +2

    Thanks, Ninja.

  • @utkarshyadav6119
    @utkarshyadav6119 4 года назад

    When the sloth rotates I was like OK
    Its slow
    But when it fades away even slower that was the point I was like dammm.....

  • @victormanuelfrancodev
    @victormanuelfrancodev 2 года назад

    great talk!,was very interesting

  • @furkansarihan
    @furkansarihan 4 года назад +3

    9:25 😄

  • @DexterTalha
    @DexterTalha 4 года назад +1

    Awesome... Thank you

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

    Any real official course/tutorial and actualization in all these years??? or flutter really die???? were i start in 2024???? (there is no guide only copy paste)

  • @MohamedSlama
    @MohamedSlama 3 года назад +1

    I wish if he didn't stop talking, Awesome

  • @toufiqulislam8575
    @toufiqulislam8575 4 года назад +1

    please show any object detection app with Tensorflow with Image annotation, model preparation, and model training.

  • @ricard458
    @ricard458 3 года назад

    Great tips!

  • @tofiqsamali6846
    @tofiqsamali6846 4 года назад

    Flutter is Amazing but Filip is more

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

    Thank you - This is a lot to bag

  • @benn5451
    @benn5451 4 года назад

    Great video

  • @jeieljunio
    @jeieljunio 4 года назад

    👏👏👏👏

  • @salaheddine6556
    @salaheddine6556 3 года назад

    Hope u add Arabic Caption soon

  • @xRapidNet
    @xRapidNet 2 года назад

    Amazons Talk!

  • @ColdStoneBoy
    @ColdStoneBoy 4 года назад

    👍

  • @Artem-bx1is
    @Artem-bx1is Год назад

    Best

  • @콩미워
    @콩미워 4 года назад

    Very gooddddd