Flutter Front-End for Secure Chat Application with ASP.NET Core Web API

In this part of the tutorial, we’ll build a Flutter app to handle user registration, login, and secure real-time chat using SignalR. JWT tokens will be stored in memory for authenticating with the backend API and SignalR server. Setting Up the Flutter Project Installing Dependencies Add the following dependencies to your pubspec.yaml: Run: Creating the … Read more

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

How to Implement Clean Architecture in Flutter

Clean Architecture in Flutter

Clean Architecture in Flutter is like the magic wand that turns your app development journey into a breeze. It’s the secret recipe for building apps that work beautifully, stay organized, and grow without headaches. In this blog post, we’ll simplify the complexities and shed light on Clean Architecture in Flutter and present it in the … Read more

Building Windows App with Flutter Desktop

flutter desktop

Flutter is Google’s portable UI toolkit for crafting beautiful, natively compiled applications for mobile, web, and flutter desktop from a single codebase. Flutter is free and open-source, and it is utilized by developers and organizations all over the world. Dart, a client-optimized language for fast apps on any platform, is the language used to create … Read more

Building CRUD App With Flutter And 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