Best of DartSeptember 2024

  1. 1
    Article
    Avatar of dartdevsDart Developers·2y

    Dart + Flutter Community Help

    A collaborative space for community members to address issues and seek help with Dart and Flutter development.

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

    BuildContext Extension for Push, Pop

    Simplify your Flutter app's navigation code by defining push and pop methods inside a BuildContext extension. This allows you to use context.push or context.pop instead of repeatedly calling Navigator.of(context).

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

    Stylish Text with ShaderMask and LinearGradient

    Learn how to create stylish text in Flutter by combining ShaderMask with LinearGradient. This example demonstrates using a gradient to style text with a code snippet provided.

  4. 4
    Article
    Avatar of medium_jsMedium·2y

    Boost your Flutter app with the newest Dart version

    Discover how Dart 3.4.4 can enhance your Flutter app with improved features like enum constructors, extension types, and Dart Isolates. Enum constructors make your enums more concise and maintainable, while extension types offer a cleaner way to extend existing types without boilerplate code. Dart Isolates, introduced in version 2.4, allow for parallel code execution, keeping your main thread responsive for better performance in Flutter applications.