Flutter Dismissible example – Swipe to dismiss/remove Item in ListView

In previous post, we had created and shown a ListView with ListView.builder() constructor method. Today, we’re gonna add a function that allows us swipe to remove Item in the list using Dismissible.

Related Post: Flutter ListView example with ListView.builder

Continue reading “Flutter Dismissible example – Swipe to dismiss/remove Item in ListView”

Flutter Firebase Database example – Firebase Database CRUD with ListView

Flutter Firebase Database example – Firebase Database CRUD with ListView

Firebase Realtime Database is a cloud-hosted database that helps us to store and sync data with NoSQL cloud database in realtime to every connected client. In this tutorial, we’re gonna build a Flutter App that allows us to make CRUD interactions with Firebase Database in a ListView.

Related Posts:
How to integrate Firebase into Flutter App – Android Studio
Flutter Navigator example – Send/Return data to/from new Screen
Flutter ListView example with ListView.builder
Flutter Firestore example – Firebase Firestore CRUD with ListView

Continue reading “Flutter Firebase Database example – Firebase Database CRUD with ListView”

Flutter Firestore example – Firebase Firestore CRUD with ListView

Cloud Firestore helps us store data in the cloud. It supports offline mode so our app will work fine (write, read, listen to, and query data) whether device has internet connection or not, it automatically fetches changes from our database to Firebase Server. We can structure data in our ways to improve querying and fetching capabilities. This tutorial shows you a Flutter app that can do Firestore CRUD Operations with ListView widget.

Related Posts:
How to integrate Firebase into Flutter App – Android Studio
Flutter Navigator example – Send/Return data to/from new Screen
Flutter ListView example with ListView.builder

Firebase Database: Flutter Firebase Database example – Firebase Database CRUD with ListView

Continue reading “Flutter Firestore example – Firebase Firestore CRUD with ListView”

Flutter SQLite example – CRUD Operations with ListView & sqflite plugin

Flutter SQLite example – CRUD Operations with ListView & sqflite plugin

In previous post, we knew how to make SQLite CRUD Operations using sqflite plugin. In this tutorial, we’re gonna build a Flutter App that allows us to make CRUD interactions with SQLite in a ListView.

Related Post:
Flutter ListView example with ListView.builder
Flutter Navigator example – Send/Return data to/from new Screen
Flutter SQLite example – CRUD operations with sqflite plugin

Firebase:
Flutter Firebase Database example – Firebase Database CRUD with ListView
Flutter Firestore example – Firebase Firestore CRUD with ListView

Continue reading “Flutter SQLite example – CRUD Operations with ListView & sqflite plugin”

Flutter HTTP Client example with ListView – Fetch data and parse JSON in background

In this tutorial, we’re gonna build a Flutter App that use http package to fetch data from the internet, then parse JSON to a Dart List of Objects and display that List in ListView widget.

Related Post: Flutter ListView example with ListView.builder

Continue reading “Flutter HTTP Client example with ListView – Fetch data and parse JSON in background”