Best of DartJuly 2024

  1. 1
    Article
    Avatar of dartdevsDart Developers·2y

    Package of the Day! (retry)

    The 'retry' package assists in retrying async functions, making it beneficial for handling occasional failures caused by undesired responses or overloaded servers.

  2. 2
    Article
    Avatar of dartdevsDart Developers·2y

    Package of the Day! (timeago)

    The timeago package is a handy tool for converting a DateTime object into a human-readable string, such as 'just now' or 'an hour ago'.

  3. 3
    Article
    Avatar of dartdevsDart Developers·2y

    What are your favorite OpenSource Flutter/Dart Projects!

    Seeking recommendations for impressive open-source Flutter and Dart projects, ranging from helpful packages to full applications. Top-voted projects will be highlighted in future posts.

  4. 4
    Article
    Avatar of itnextITNEXT·2y

    Fluttercon Europe 2024

    FlutterCon Europe 2024 was a vibrant event featuring various insightful presentations on Flutter development, including talks on static code analysis, security practices with OpenSSF Scorecards, real-time communication with Flutter, and more. Speakers discussed practical approaches to improving code quality and performance, tackling architectural challenges, and integrating native code with Flutter. The conference emphasized community connection and knowledge sharing, providing a thorough overview of the latest trends and techniques in Flutter development.

  5. 5
    Article
    Avatar of freecodecampfreeCodeCamp·2y

    How to Use Enhanced Enums in Dart – Explained With Code Examples

    Enhanced enums in Dart offer advanced features like attaching additional information, methods, and properties to each enum option. This enables more organized and expressive code. Key capabilities include custom constructors, operator overloading, using extensions, and mixins. Understanding these features can significantly improve code readability, maintainability, and functionality. Practical examples demonstrate these concepts, making it easier to integrate them into your own projects.