Tag: Flutter App Development

  • Flutter Best Practices — Part 6

    Flutter Best Practices — Part 6

    Flutter Best Practices — Part 6 Flutter Best Practices Proper naming for Magic Numbers // Do not SvgPicture.asset( Images.frameWhite, height: 13.0, width: 13.0, ); // Do final _frameIconSize = 13.0; SvgPicture.asset( Images.frameWhite, height: _frameIconSize, width: _frameIconSize, ); Understanding the concept of constraints in Flutter There is a thumb rule of a Flutter layout that every…