Everyone knows that good UI/UX is what differentiates an average app from a great app. A reliable way of improving the UX of your app is to use animations that grab the user’s attention without being obstructive or spammy. YouTube recently added an i... https://nkshah2.hashnode.dev/creating-the-youtube-subscribe-button-animation-in-flutter
![Change Image in Flutter](https://www.cdn5.niftycent.com/d/1/R/z/6/q/b/change-image-in-flutter.webp)
Picking up image is one of the important thing in any application. User want to select various image, upload it and various other reasons. Making a functionality for picking image is one of the crucial part of mobile development and also for other pl... https://codeflutterblog.hashnode.dev/change-image-in-flutter
![Deobfuscating Flutter Crash Reports in Firebase Crashlytics](https://www.cdn5.niftycent.com/d/k/8/V/Z/w/g/deobfuscating-flutter-crash-reports-in-firebase-crashlytics.webp)
Flutter has become a staple for cross-platform mobile app development, praised for its efficiency and the seamless experience it offers developers. However, as with any technology, encountering crashes is inevitable. When obfuscation enters the mix, ... https://himu.dev/deobfuscating-flutter-crash-reports-in-firebase-crashlytics
![Development Challenge: Building a Collapsible AppBar in Flutter](https://www.cdn5.niftycent.com/d/1/n/0/g/X/3/development-challenge-building-a-collapsible-appbar-in-flutter.webp)
As we kickstarted the UI development of Waki in late January, Anderson and I decided to split the development work, with Anderson working on the home of the app while I work on the user profile and account settings of the app. So I naturally had to c... https://waki.hashnode.dev/development-challenge-building-a-collapsible-appbar-in-flutter
![SingleChildScrollView widget and Attributes](https://www.cdn5.niftycent.com/d/k/J/b/6/3/d/singlechildscrollview-widget-and-attributes.webp)
In Flutter, the SingleChildScrollView widget is a versatile component designed to contain a single child that may need to be scrolled if it exceeds the available viewport. It is particularly useful when dealing with content that might extend beyond t... https://vinitmepani.hashnode.dev/singlechildscrollview-widget-and-attributes
![How Waki Came to Be](https://www.cdn5.niftycent.com/d/1/x/o/g/B/O/how-waki-came-to-be.webp)
New year, new beginnings! I am super excited to share with you the first progress update about Waki. Being the very first post on this page, I though it would be nice to give a background of how Waki came about.
Out of our love for creating solutio...
https://waki.hashnode.dev/how-waki-came-to-be
![Using Maestro for Acceptance Testing in Flutter](https://www.cdn5.niftycent.com/d/k/W/8/6/Z/A/using-maestro-for-acceptance-testing-in-flutter.webp)
Any app developer knows the importance of testing. Sadly, some time ago, we were left without a QA engineer. This meant that specific flows (such as authentication, generating a test order, or accepting an order) had to be manually tested. Fortunatel... https://neo-femo.hashnode.dev/using-maestro-for-acceptance-testing-in-flutter
![SizedBox Widget and Attributes](https://www.cdn5.niftycent.com/d/1/G/K/L/4/G/sizedbox-widget-and-attributes.webp)
In Flutter, the SizedBox widget is a versatile container that allows you to specify explicit dimensions, both width and height, for its child or to create empty space within your UI. It's particularly useful for controlling the size of widgets or add... https://vinitmepani.hashnode.dev/sizedbox-widget-and-attributes
![Card Widget and Attributes](https://www.cdn5.niftycent.com/d/1/B/r/n/V/w/card-widget-and-attributes.webp)
In Flutter, a Card widget is a material design card that represents a piece of information, typically within a contained area with a shadow. It is commonly used to display related information, such as a contact's details, a product, or any other cont... https://vinitmepani.hashnode.dev/card-widget-and-attributes
Dependency injection is a crucial aspect of software development that enhances modularity, testability, and maintainability of code. In Flutter, dependency injection is widely used to manage dependencies and decouple components of an application. One... https://everythingflutter.com/dependency-injection-in-flutter-with-injectable-package