Programming

How to make custom BottomNavigationBar in flutter with source code

To create a bottom sheet with the given BottomNavigationBar code in a Flutter application, you can follow these steps: Create a new Flutter project (if you haven’t already). Set up the basic structure of your Flutter app, including a Scaffold with a BottomNavigationBar. Implement the bottom sheet functionality which will be triggered when an item in the BottomNavigationBar is tapped. Here is a step-by-step guide: Step 1: Set …

Read More »

How to integrate Login with Google in Flutter using Firebase step by step

Integrating Google login in a Flutter app using Firebase involves several steps. Here’s a step-by-step guide to get you set up: Prerequisites: Flutter SDK installed on your system. Firebase Account and a Firebase project created. Google Cloud Platform project with OAuth 2.0 credentials set up. 1. Create a Firebase Project Go to the Firebase Console. Click on “Add project” and …

Read More »

Top 5 Best Programming Languages To Learn in 2024

Choosing the best programming languages to learn in 2024 depends on your goals, whether you’re interested in web development, data science, software engineering, or something else. Here are five languages that are particularly noteworthy for various reasons: Also Read: Top 100 Flutter interview questions and answers in 2024 Certainly! Here’s a detailed look at why each of these programming languages …

Read More »

A binary gap within a positive integer N is any maximal sequence of consecutive zeros that is surrounded by ones at both ends in the binary representation of N.

A binary gap within a positive integer N is any maximal sequence of consecutive zeros that is surrounded by ones at both ends in the binary representation of N. For example, number 9 has binary representation 1001 and contains a binary gap of length 2. The number 529 has binary representation 1000010001 and contains two binary gaps: one of length 4 and one of length 3. …

Read More »

Accenture Coding Questions and Solution 2024

Accenture Coding Questions and Solution 2024 1.Problem Description : The function accepts two positive integers ‘r’ and ‘unit’ and a positive integer array ‘arr’ of size ‘n’ as its argument ‘r’ represents the number of rats present in an area, ‘unit’ is the amount of food each rat consumes and each ith element of array ‘arr’ represents the amount of …

Read More »

How to Create Login System Using PHP and MySQL

PHP MySQL Login System In this topic, we will learn how to create a PHP MySQL Login System with the help of PHP and MySQL database. There are few steps given for creating a login system with MySQL database. Before creating the login system first, we need to know about the pre-requisites to create the login module. Requirements We should …

Read More »

Build a CRUD App with Node.js and MongoDB

Choosing the right tool for a web application can be tricky. But if you do, it will make things a lot easier for you. Depending on your application, combining Node.js and MongoDB works well most of the time — especially if you use a front-end framework like React (MERN), Angular (MEAN), or Vue (MEVN). In this tutorial, you will learn …

Read More »

Create CRUD Application with Laravel and Vue.js

Throughout this Laravel VueJs CRUD example article, you may see and understand how to build Create, read, update, and Delete API and how to consume APIs to carry out CRUD operations in Laravel VueJS application. In computer science, create, read, update, and delete aren’t simply more words. they may be the foundational building block of each application for creating, reading, …

Read More »

Laravel CRUD | Laravel 8 CRUD Application Tutorial for Beginners

In this tutorial, I would like to show you the laravel 8 crud operation example. we will implement a laravel 8 crud application for beginners. I will give you a simple example of how to create crud in laravel 8. you will learn crud operation in laravel 8. So, let’s follow a few steps to create an example of the …

Read More »