Singaraju Saitejasingarajusaiteja.hashnode.dev·Feb 14, 2025Data Structures and Algorithms in Dart, with examples(In simple words)Data Structures: Your Toy Boxes and Shelves List (The Toy Box - Order Matters): Analogy: Think of a regular toy box where you throw toys in. They are in the order you put them in, and you can have duplicates (like multiple toy cars). Simple Defini...137 readsFlutter
Singaraju Saitejasingarajusaiteja.hashnode.dev·Feb 14, 2025Dart Programming with All topics and sub-topicsDart Programming - Chapter #1 Topics Explained This chapter seems to cover the fundamental building blocks of Dart programming. Let's go through each topic: (1) Variables Simple Explanation: Think of variables as labeled boxes where you can store in...95 readsFlutter
Olumide Olubosedeintermediate-flutter.hashnode.dev·Feb 5, 2025How to link multiple Scrollable widgets in FlutterHow can you control two Scrollable widgets with one ScrollController in Flutter? In short, you can’t. However, it is possible to link multiple Scrollables together. This article will demonstrate how to do this. If a ScrollController is attached to mu...2 likes·88 readsFlutter
Anindya Obiwehadit.hashnode.dev·Jan 31, 2025Beyond being Grammarly for developers 😁: AI Tools That Truly Empower DevelopersWe developers are stuffed with so many AI coding tools, but all feel the same - Grammarly for developers.The Problem: AI coding tools often miss what matters most to software developers. AI coding tools promise faster development, fewer errors, and a...Programming Blogs
fakhir hassanfakhirhassan.hashnode.dev·Jan 26, 2025Using GestureDetector Instead of TextButton and FlatButton in FlutterIntroduction With recent Flutter updates, FlatButton has been deprecated in favor of TextButton, ElevatedButton, and OutlinedButton. However, when working with tappable images or widgets that do not look like traditional buttons, GestureDetector prov...Flutter App DevelopmentFlutter
fakhir hassanfakhirhassan.hashnode.dev·Jan 25, 2025Using Card Instead of Container in Flutter: A Better ApproachFlutter provides multiple ways to design UI elements, and choosing the right widget can improve both functionality and readability. In this article, I’ll walk you through how I built a simple developer profile card using Card instead of Container and...Flutter
Torniketkko.hashnode.dev·Jan 18, 2025Optimistic State Management in FlutterIntroduction Optimistic state management is a technique that immediately updates the UI in response to user actions, assuming the operation will succeed. This approach contrasts with traditional methods where the UI waits for server confirmation befo...Flutter
Gautier Siclonapparencekit.hashnode.dev·Jan 17, 2025How to build a sidebar menu with GoRouter nested navigation in FlutterIf most of the Flutter apps are for mobile iOS and Android devices. We still needs to create sidebar for tablets. And as you know you can also publish your Flutter app on the web. In this article, we will see how to create a sidebar menu in Flutter. ...Flutter
Bigyanicnotes.bigyantimilsina.com.np·Jan 11, 2025Flutter Custom Widgets Tutorial: A Beginner's Learning JourneyFlutter is like a momo-making machine. You take raw ingredients (widgets), mix them well (code), and create something delicious (apps)! For anyone diving into Flutter development for beginners, custom widgets are a must-learn skill. They let you buil...Flutter
Bigyanicnotes.bigyantimilsina.com.np·Jan 1, 2025How to Fetch Data from the Internet in Flutter with APIsAPI (Application Programming Interface) An API (Application Programming Interface) is like a bridge that lets two software programs talk to each other. It defines how one program can request information or services from another. For example, when you...1 likeAPIs