The StreamBuilder widget in Flutter is used to build UI components based on the latest snapshot of data from a stream. It's commonly used for asynchronous operations such as fetching data from APIs or handling user input events. Attributes:
stream (... https://vinitmepani.hashnode.dev/streambuilder-widget-and-attributes
The Table widget in Flutter is used to create a grid of cells, similar to an HTML table. It allows you to arrange widgets in rows and columns, providing more control over the layout compared to other widgets like Row and Column. Attributes:
children... https://vinitmepani.hashnode.dev/table-widget-and-attributes
The SliverList widget in Flutter is used to create a scrollable list of children within a CustomScrollView. It's typically used in scenarios where you need to create a list of items that can be scrolled infinitely or when you want to customize the sc... https://vinitmepani.hashnode.dev/sliverlist-widget-and-attributes
The Transform widget in Flutter is used to apply transformations, such as rotation, scaling, and translation, to its child widget. It's commonly used to manipulate the appearance and position of UI elements. Attributes:
transform (Matrix4):
The tra... https://vinitmepani.hashnode.dev/transform-widget-and-attributes
Introduction Hey there! 👋 Thank you so much for stopping by and taking the time to read this blog 😃
Okay so, picture this: You're about to go on an exciting adventure 🛣️ – not across towering mountains or through jungles, but across the vast and ... https://dhruvnakum.xyz/becoming-an-expert-in-flutter-with-clean-architecture-a-comprehensive-guide
Introduction We will look at how to create a native bridge between Flutter and Android Native (Kotlin) in this article. I will make this brief and straight to the point. It should be noted that this bridge will transfer integer data from Flutter to A... https://anantdubey.hashnode.dev/native-bridge
Hyperledger: The Gold Standard in Blockchain Technology In this forward-looking chapter of "Golden Threads," we delve into the cutting-edge realm of blockchain technology and its application in gold investments, specifically through the lens of Hyper... https://blog.bksmygold.com/golden-threads-article-14
The MediaQuery widget in Flutter is a powerful tool for building responsive layouts. It provides information about the current media, such as the size of the screen and device orientation. This allows developers to create UIs that adapt to various sc... https://vinitmepani.hashnode.dev/mediaquery-widget-and-attributes
The AnimatedList widget in Flutter is used to create a scrollable list of items with animation support for adding, removing, or updating list items. It's ideal for situations where you want to animate changes to a list dynamically. Attributes:
key (... https://vinitmepani.hashnode.dev/animatedlist-widget-and-attributes
The Dismissible widget in Flutter is used to dismiss a widget from the screen in response to a swipe gesture. It's commonly used to implement features like swiping to delete items in lists or dismissing pop-up dialogs. Attributes:
key (Key):
An opt... https://vinitmepani.hashnode.dev/dismissible-widget-and-attributes