Best of DartJuly 2022

  1. 1
    Article
    Avatar of freecodecampfreeCodeCamp·4y

    Why You Should Use Flutter for Your Projects

    Flutter is a toolkit and SDK which you can use to build applications. You can use it to build highly performant mobile and desktop apps. Flutter is cross-platform so you don't need to hire developers for each platform. The Flutter engine is in charge of interpreting Flutter code to exactly what is drawn on the device's screen.

  2. 2
    Article
    Avatar of flutterdevsFlutterDevs·4y

    Explore Flutter Bloc 8.0.1 Design Pattern In Flutter

    The Flutter bloc 8.0.1 design pattern gives a superior method for dealing with the states utilizing events. Following the Bloc pattern works with testability and reusability. This package abstracts receptive parts of the pattern permitting developers to zero in on composing the business logic.

  3. 3
    Article
    Avatar of flutter_comFlutter Community·4y

    Why dividing(/) by 0 does not throw an error in Dart — How Dart handles numbers

    Dart targets multiple platforms, and numbers in dart behave differently depending on the underlying platform. In dart, int represents integers, and double represents fractional values. Why dividing(/) by 0 does not throw an error in Dart — How Dart handles numbers? How does Dart handle numbers and operations while targetting so many platforms?