Blogging my journey of learning Full stack devlopment and creating an App to get a hands on knowledge.

Search This Blog

Wednesday, 7 June 2023

Building a Recipe Creator App with Flutter and OpenAI ChatGPT API

The app will allow users to enter ingredients in the textbox and they will get the personalized recipe recommendation based on their inputs through the capabilities of OpenAI .Step 1: Create a new Flutter projectStep 2: Add Dependenciesdependencies:  http: ^0.13.0Step 3: Design the App UI and  Integrate OpenAI API with Flutter UI ...
Read More

Friday, 2 June 2023

Building a Travel Itinerary App with Flutter and OpenAI ChatGPT

In this technical blog post, we will walk through the process of creating a travel itinerary app using Flutter and integrating the OpenAI ChatGPT API. By leveraging the cross-platform capabilities of Flutter and the conversational intelligence of ChatGPT, we can develop an app that assists users in planning their trips and generates personalized itineraries based on their preferences. Step 1: Setting...
Read More

Wednesday, 10 May 2023

Thursday, 4 May 2023

Implementing BLOC design pattern for state management of Search Field in Flutter

 Business logic components (BLoC) allow you to separate the business logic from the UI. Using Bloc, we can easily separate the application into multiple layers, first we would have the presentation layer which would contain the UI/Views/widgets, then the business logic layer (Bloc) which will take care about the state changes and will have a dependency on the data access layer which...
Read More

Friday, 31 March 2023

Add CORS configuration for your Firebase Storage

Firebase is using the same storage infrastructure as google cloud .1. Go to https://console.cloud.google.com and select the dashboard of the project that contains the firebase storage.2. On the top right, there will be a button named "Activate Cloud Shell", click on it, a terminal will open on the bottom of the pageClick on Open EditorClick on File, and New file. 3.Create new file with...
Read More

Firebase Firestore Database and Storage implementation for Flutter Project

From your Flutter project directory, run the following command to install the core plugin:flutter pub add firebase_core Add following code to the root of your Flutter project,   import'package:firebase_core/firebase_core.dart'; import'firebase_options.dart'; Future main()async{ WidgetsFlutterBinding.ensureInitialized(); ...
Read More

Monday, 27 March 2023

Build and Deploy your Flutter GitHub Code on Web using Firebase Hosting.

 You can automate Flutter Web Deployments to Firebase Hosting using GitHub. After the configuration and setup ,all you need to do is push your local code to GitHub and view your application on web using URL .Step 1 : Install the Firebase CLI https://firebase.google.com/docs/hosting/quickstart#install-cli Step 2 : Initialize your project firebase init hosting:github Step...
Read More

Featured Post

Invoice Portal Project Links

Web App link for Invoice Portal  Invoice Portal App lets an user view and create an Invoice. Features: View the list of Number of Invoices b...

Powered by Blogger.

Popular Posts