Write Clean Flutter Code - Parameters

แชร์
ฝัง
  • เผยแพร่เมื่อ 5 ม.ค. 2025

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

  • @siddhant4882
    @siddhant4882 9 วันที่ผ่านมา

    Thank you for this series❤

    • @HeyFlutter
      @HeyFlutter  8 วันที่ผ่านมา

      thank you!

  • @eliuddyn
    @eliuddyn 8 วันที่ผ่านมา

    Amazing 🔥🔥

    • @HeyFlutter
      @HeyFlutter  8 วันที่ผ่านมา

      Thanks 🔥

  • @lucasboitier8767
    @lucasboitier8767 9 วันที่ผ่านมา

    Constructors have to also be above parameters.

    • @HeyFlutter
      @HeyFlutter  8 วันที่ผ่านมา

      You're absolutely right! In Dart, constructors are typically placed at the top of the class, above the methods and properties. This helps with readability and follows standard best practices in class structure. Thanks for pointing that out!

  • @ThomasVWorm
    @ThomasVWorm 9 วันที่ผ่านมา

    Class fields? I thought those are instance variables.

    • @HeyFlutter
      @HeyFlutter  8 วันที่ผ่านมา

      "Great question! In Dart (the language behind Flutter), class fields are often used interchangeably with instance variables when they're non-static. However, static variables in a class are not tied to any instance and belong to the class itself. If you’re talking about regular, non-static fields, they are indeed instance variables. Let us know if you'd like further clarification!

    • @ThomasVWorm
      @ThomasVWorm 8 วันที่ผ่านมา

      @HeyFlutter why not just talking about instance and class variables? Those words are much clearer. "static" sounds as if those variables are not variable but constants.