Dart 2.15 has been announced , and OMG they are improving enums : enum MyEnum { one, two, three } ... print(MyEnum.one.name); // Prints "one". print(MyEnum.values.byName('two') == MyEnum.two); // Prints "true".
Maybe we will get Swift-like supe... https://mvolpato.hashnode.dev/this-week-in-flutter-33
![Form Validation in Flutter](https://www.cdn5.niftycent.com/d/1/q/N/m/g/7/form-validation-in-flutter.webp)
Form Validation is an important part of every application. In the flutter application, there are many ways to validate form such as using a TextEditingController. But handling text controller for every Input can be messy in big applications. Hence, F... https://techwithlanre.xyz/form-validation-in-flutter
![What is a Flexible widget in Flutter?](https://www.cdn5.niftycent.com/d/1/V/p/Y/6/r/what-is-a-flexible-widget-in-flutter.webp)
Flexible is a built-in widget in flutter which controls how a child flexes widgets. So, in this article, we will see what is a Flexible widget in Flutter is. What is a Flexible widget in Flutter? The Expanded widget in flutter is shorthand of Flexibl... https://hashnode.com/post/what-is-a-flexible-widget-in-flutter-ckx1uk7st03k2g8s1gxjsawyf
Flutter SDK by Google is the best solution for cross-platform App development. So, in this article, we will have a look at the Top 10 reasons to choose Flutter for your next project. Top 10 reasons to choose Flutter for your next project. People use ... https://flutteragency.hashnode.dev/top-10-reasons-to-choose-flutter-for-your-next-project
Introduction
Creating a responsive application is a critical task for any web/mobile app developer. There are hundreds of such gadgets, each with its own dimensions. And the most crucial step is to fit our app to the device's screen. There are numer... https://dhruvnakum.xyz/how-to-make-a-pixel-perfect-flutter-application
![Build complex widgets with flutter](https://www.cdn5.niftycent.com/d/1/B/E/M/0/K/build-complex-widgets-with-flutter.webp)
So you got a complex UI challenge you want to implement with flutter, it seems so daunting. Can I really do this? you ask yourself. Truth is, YES you can, true, depending on the challenge it can be quite difficult and frustrating, you probably won't ... https://jasper-dev.hashnode.dev/build-complex-widgets-with-flutter
Introduction A Navigator widget in Flutter is what we use to maintain a stack of routes and it plays a huge role in helping us to navigate between routes. The Navigator widget often works under the hood without us having to initialise it but there ar... https://techblog.geekyants.com/nested-navigation-in-flutter-navigator-widget
Introduction This article demonstrates how to unit-test Shared Preferences in Flutter projects. This article assumes that the reader is familiar with Flutter development and the Dart language. The code in the demo was created using Flutter Channel ... https://blog.victoreronmosele.com/mocking-shared-preferences-flutter
If you, like me, installed Flutter on Ubuntu with the snap command and you need to know where the Dart SDK is located, wait no more, its here: \~/snap/flutter/common/flutter/bin/cache By the way, the flutter SDK is here: \~/snap/flutter/common/flutte... https://coffeecode.hashnode.dev/where-in-the-snap-is-dart-sdk
Remember in the last article I just reversed the Ubuntu snap update of Intellij Idea because the plugin it had for flutter was incompatible with the new version of Idea? Well, it looks like there's already a new flutter plugin, so how do we update th... https://coffeecode.hashnode.dev/the-other-way