Create Custom Widgets in Flutter

Create a Custom Widget in Flutter

Widgets in Flutter are the building blocks of user interfaces in Flutter. In Flutter, everything is a widget. According to the documentation, Flutter widgets are built using a modern framework that takes inspiration from React. If you’re familiar with React, you would know that React user interfaces are built using components. The view of widgets … Read more

Crud Operation in Flutter using Firebase

Crud Operation in flutter using Firebase

In the previous post, we created a simple project Flutter login and registration using Firebase, this time we will make a simple Crud Operation in flutter using Firebase. We are going to implement a CRUD(create, read, update and delete operations) with Firebase FireStore Database. What is FireStore Database? Firestore is a document-oriented database that provides … Read more