![Why choose Flutter?](https://www.cdn5.niftycent.com/d/k/8/q/Q/A/J/why-choose-flutter.webp)
So, you are a developer looking for the next fun playground or evaluation viable technologies for your companies next big project? As someone who has been there already and inevitably decided on Flutter, let me see if I can help you with that one. Wh... https://blog.remelehane.dev/why-choose-flutter
![An approach to error handling on Flutter](https://www.cdn5.niftycent.com/d/1/Y/E/K/d/B/an-approach-to-error-handling-on-flutter.webp)
Intro In the day-to-day of any app, we have to deal with errors and exceptions that happen if something doesn't go as expected. This article aims to bring some approaches to dealing with these errors in Flutter. Imagine a scenario where we have to ma... https://aquilarafael.hashnode.dev/an-approach-to-error-handling-on-flutter
![Flutter Widget In Detail: Scaffold](https://www.cdn5.niftycent.com/d/1/Y/E/V/b/Y/flutter-widget-in-detail-scaffold.webp)
Introduction
Before we design anything in Flutter, we need something in the base which can hold the basic layout structure and provide us some common widgets that help us building design easily. For example, If you observe any application in your mo... https://dhruvnakum.xyz/flutter-widget-in-detail-scaffold
![Navigating In Flutter](https://www.cdn5.niftycent.com/d/D/v/j/x/4/r/navigating-in-flutter.webp)
Navigation is a way to have multiple screens on our flutter app and it won't limit us to a single page. When we come accross the word navigation in flutter, two things should come to our mind which are routes and navigation. In flutter we have a te... https://atandanafiu.hashnode.dev/navigating-in-flutter
![Getting a substring in Dart](https://www.cdn5.niftycent.com/d/1/d/Y/G/M/n/getting-a-substring-in-dart.webp)
I was trying to figure out the most efficient way to trim or shorten a String in Dart(more speficially for a Flutter project) yesterday. There's actually a couple of different ways to do it. The substring method The first and most typical one is usin... https://flutterramblings.hashnode.dev/getting-a-substring-in-dart
![Subtle Flutter mistake I made today](https://www.cdn5.niftycent.com/d/k/8/q/7/Q/8/subtle-flutter-mistake-i-made-today.webp)
These days I'm busy creating AppFeedback in Flutter web. The experience has been frictionless. One of the subtle mistakes I made was, while binding to button onPressed handler. Normally it looks like this. IconButton( onPressed: () { print("tag** pr... https://indy9000.hashnode.dev/subtle-flutter-mistake-i-made-today
![Integrate Amazon Lex With Flutter App](https://www.cdn5.niftycent.com/d/k/z/X/B/n/Z/integrate-amazon-lex-with-flutter-app.webp)
For industries and companies to maintain an advantage over their competitors, better customer service offers in their mobile apps are crucial. So it is equally important to understand how to integrate a bot in a flutter app. As Amazon is increasing i... https://monik.hashnode.dev/integrate-amazon-lex-with-flutter-app
![Adding a snackbar in Flutter](https://www.cdn5.niftycent.com/d/D/v/j/x/8/b/adding-a-snackbar-in-flutter.webp)
I don't mean the Dutch word snackbar (see image below), but a toast-like message that we can use to feedback to the user.
Using snackbars in mobile apps is very common as they are a perfect way to provide valuable feedback. For today's article, I wi... https://h.daily-dev-tips.com/adding-a-snackbar-in-flutter
![Flutter Widget In Detail: MaterialApp](https://www.cdn5.niftycent.com/d/k/o/r/G/V/o/flutter-widget-in-detail-materialapp.webp)
Introduction:
MaterialApp is Futter's one of the most powerful widgets. if you create a basic Flutter app then the first widget you'll see is MaterialApp MaterialApp wraps a number of widgets that are commonly required for material design applicatio... https://dhruvnakum.xyz/flutter-widget-in-detail-materialapp
![Enabling Flutter desktop applications](https://www.cdn5.niftycent.com/d/1/B/w/7/g/a/enabling-flutter-desktop-applications.webp)
A super cool thing in Flutter is that it can compile too many different outputs. We've seen mobile apps, but Flutter can also output to native desktop apps! Today we are doing just that. We'll take our Flutter side menu application and convert it to ... https://h.daily-dev-tips.com/enabling-flutter-desktop-applications