Flutter Europe: Optimizing your Flutter App

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

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

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

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

    I like Filip's shirt with the bicycle 👌🏼

  • @user-vr9qb5rj4j
    @user-vr9qb5rj4j 2 ปีที่แล้ว +2

    Thank you Filip and Flutter team!

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

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

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

    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

      th-cam.com/video/x0uinJvhNxI/w-d-xo.html

    • @jan3477
      @jan3477 4 ปีที่แล้ว

      @@vasylmayovets8778 I can highly recommend that !

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

    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

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

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

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

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

    • @EdmoreGonese
      @EdmoreGonese 2 ปีที่แล้ว

      Oh makes sense 😆 Like I was missing all the jank

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

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

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

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

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

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

  • @tienduy1296
    @tienduy1296 3 ปีที่แล้ว

    thank you!!! The presentation was great >3

  • @shashikantdurge
    @shashikantdurge 4 ปีที่แล้ว

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

  • @RiceCooker-hp5px
    @RiceCooker-hp5px 4 ปีที่แล้ว +4

    w8, is this a reupload?

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

    Thanks, Ninja.

  • @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 5 หลายเดือนก่อน

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

  • @deepaklohmod396
    @deepaklohmod396 2 ปีที่แล้ว

    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?

  • @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 ปีที่แล้ว

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

  • @Gentleman217
    @Gentleman217 2 ปีที่แล้ว

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

  • @digiunlimited3000
    @digiunlimited3000 4 ปีที่แล้ว

    Good talk as always Filip

  • @JoonBeh
    @JoonBeh 3 ปีที่แล้ว

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

  • @mohamad.elbohsaly
    @mohamad.elbohsaly ปีที่แล้ว

    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

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

    Awesome... Thank you

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

    9:25 😄

  • @victormanuelfrancodev
    @victormanuelfrancodev 2 ปีที่แล้ว

    great talk!,was very interesting

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

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

    I wish if he didn't stop talking, Awesome

  • @ouya6967
    @ouya6967 4 ปีที่แล้ว

    22:00 StatelessWidget is fater than function?

    • @kazukihiromoshito2935
      @kazukihiromoshito2935 3 ปีที่แล้ว

      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)

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

    Thank you - This is a lot to bag

  • @ricard458
    @ricard458 2 ปีที่แล้ว

    Great tips!

  • @xRapidNet
    @xRapidNet 2 ปีที่แล้ว

    Amazons Talk!

  • @benn5451
    @benn5451 4 ปีที่แล้ว

    Great video

  • @tofiqsamali6846
    @tofiqsamali6846 4 ปีที่แล้ว

    Flutter is Amazing but Filip is more

  • @salaheddine6556
    @salaheddine6556 3 ปีที่แล้ว

    Hope u add Arabic Caption soon

  • @Artem-bx1is
    @Artem-bx1is 8 หลายเดือนก่อน

    Best

  • @jeieljunio2034
    @jeieljunio2034 4 ปีที่แล้ว

    👏👏👏👏

  • @user-zb6tu3bh8j
    @user-zb6tu3bh8j 4 ปีที่แล้ว

    Very gooddddd

  • @ColdStoneBoy
    @ColdStoneBoy 4 ปีที่แล้ว

    👍

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

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

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

      That's a whole project in itself