Best of FlutterApril 2024

  1. 1
    Article
    Avatar of freecodecampfreeCodeCamp·2y

    Flutter Tutorial – How to Develop an App with Flutter From Scratch

    Learn how to develop a Flutter app from scratch, including installation, coding UI elements, testing, and app publication.

  2. 2
    Article
    Avatar of codewithandreaCode with Andrea·2y

    Flutter Tip: Use Composition Aggressively

    Using composition aggressively in Flutter can lead to the creation of small, reusable widgets that are easier to reason about.

  3. 3
    Article
    Avatar of medium_jsMedium·2y

    Making Flutter apps look more native. Part 1: tap effects

    Learn how to make Flutter apps look more native by implementing tap effects. Understand the differences between InkWell and GestureDetector and why it is recommended to pass a padding directly to the TapArea widget.

  4. 4
    Article
    Avatar of flutterFlutter·2y

    Flutter and Dart at Google Cloud Next

    The Flutter team attended Google Cloud Next for the first time, partnering with teams across Google Cloud, Firebase, Very Good Ventures, and Serverpod. They showcased fast development with Firestore, Cloud Run, and Flutter; intelligent app development with Flutter, Firebase, and Gemini; full-stack Dart development with Serverpod; live coding a Flutter app with Firestore; developing full-stack apps and games with Flutter, Dart Frog, and Gemini; and how to use Dart Frog and Google Cloud to share code. They also highlighted Firestore Vector Search support and extension launch, as well as the private preview of Vertex Gemini Dart SDK for Flutter and Dart developers. They encouraged developers to share what they're building with Flutter and Google Cloud.

  5. 5
    Article
    Avatar of medium_jsMedium·2y

    How to Find Memory Leaks in Flutter Apps?

    This post discusses how to find and fix memory leaks in Flutter apps using DevTools. It explains the basics of memory management in Dart and provides guidance on using the Memory View in DevTools. The post also covers how to compare different time frames in DevTools and provides a common example of a memory leak in Flutter apps.

  6. 6
    Article
    Avatar of codewithandreaCode with Andrea·2y

    Code Generation with Dart & Flutter: The Ultimate Guide

    This post discusses code generation in Dart and Flutter, covering topics such as the code generation mechanism with build_runner, useful code-generating packages like json_serializable and injectable, efficient codebase maintenance techniques, and best practices for using code generation in projects.