Flutter cover image
Flutter
Flutter
Cross-platform UI toolkit by Google, allowing developers to build natively compiled applications for mobile, web, and desktop from a single codebase, with expressive and visually appealing interfaces.
Created on Mar 16, 2023
6 Posts
11 Followers

Creating a Carousel Slider in Flutter

A carousel slider is a common UI element in mobile app development that allows users to swipe through a series of images or content in a carousel-like...
Creating a Carousel Slider in Flutter

Returning Data from a Screen

Explore how to return data from a screen in Flutter using Navigator.pop() and await. Navigate to the Second Screen In your first screen (the screen fr...
Returning Data from a Screen

Implementing a REST API

A REST API allows your Flutter app to communicate with a server and perform various operations like fetching data, posting data, or updating data. Set...
Implementing a REST API

Sending Mail and SMS

Flutter provides plugins that allow you to easily integrate mail and SMS functionalities into your app. Mail Integration Add the Dependency In your pu...
Sending Mail and SMS

Fetching Data From the Internet

In Flutter, you can easily retrieve data from web APIs and display it in your app. Setting Up the Project Before we begin, ensure you have Flutter ins...
Fetching Data From the Internet

Implementing Staggered Grid View

This layout is ideal for displaying a collection of items with different heights, such as images, cards, or tiles. Setting Up the Project Before we be...