DeepCrazyWorld
  • FLUTTER
    • FLUTTER APP
      • QRCode
      • Quiz App
      • Chat GPT
      • PDF App
      • News App
      • Fitness App
      • Weather App
      • BMI Calculator
      • GAME APP
      • Ecommerce App
      • wallpaper App
      • Finance app
      • Chat App
      • Wallet App
      • Taxi App
      • Quran app
      • Music player app
    • FLUTTER UI
      • Splash Screen
      • Onboarding Screen
      • Login Screen
      • Card Design
      • Drawer
  • PROJECT
    • Android Projects
    • College Projects
    • FLUTTER APP
    • Project Ideas
    • PHP Projects
    • Python Projects
  • SOURCE CODE
  • ANDROID
    • ANDROID APP
    • GAME APP
    • ANDROID STUDIO
  • MCQ
    • AKTU MCQ
      • RPA MCQ
      • COA MCQ
      • HPC MCQ
      • SPM MCQ
      • Renewable Energy All MCQ
      • Data Compression MCQ
      • Data Structure MCQ
      • Digital Image Processing MCQ
      • Software Engineering MCQ
      • Machine Learning MCQ
      • Artificial Intelligence MCQ
    • D PHARMA MCQ
      • Pharmaceutics – I MCQ
      • Pharmacognosy MCQ
      • Pharmaceutical Chemistry MCQ
      • Biochemistry and Clinical Pathology MCQ
      • Human Anatomy and Physiology MCQ
      • Heath Education and Community Pharmacy MCQ
  • INTERVIEW QUESTIONS
    • Flutter Interview Questions
    • INTERVIEW QUESTIONS
    • Python Interview Questions
    • Coding ninjas solution
  • MORE
    • WORDPRESS
      • SEO
      • TOP 10 WORDPRESS THEME
    • PRODUCTIVITY
    • Program
    • QUOTES

FLUTTER APP

FLUTTER APP

How to make Diary App using flutter stepwise using getx

Creating a Diary App using Flutter with GetX involves several steps. Here’s a step-by-step guide to get you started: Step 1: Setup Your Flutter Project Then run: Step 2: Define Your Data Model Create a model class to represent a diary entry. For simplicity, let’s assume each entry has a Read more

By Deepika, 2 yearsAugust 31, 2024 ago
FLUTTER APP

How to Create Music Player UI screen with fully functional in flutter

To create a fully functional music player UI in Flutter using GetX, follow these steps: How to Create Music Player UI screen with fully functional in flutter with step by step 1. Set Up Your Flutter Project Create a new Flutter project if you haven’t already: 2. Add Dependencies Update Read more

By Deepika, 2 yearsAugust 30, 2024 ago
FLUTTER APP

How to make Heart rate measure app with Flutter stepwise

Creating a heart rate measurement app using Flutter involves integrating hardware access, such as a camera and a light sensor, as these are typically used for photoplethysmography (PPG) to measure heart rates. In Flutter, you can utilize plugins to access the camera and sensors. Here’s a step-by-step guide on how Read more

By Deepika, 2 yearsAugust 26, 2024 ago
Chat GPT

How to make ChatGpt App in flutter with source code Stepwise

Creating a ChatGPT app in Flutter involves setting up a basic Flutter project, integrating with the OpenAI API, and designing a user interface that can handle chat messages. Below is a stepwise guide to help you build a basic ChatGPT app in Flutter with source code. Step 1: Set Up Read more

By Deepika, 2 yearsAugust 25, 2024 ago
FLUTTER APP

Create custom social login button Google, Facebook and Apple ui in Flutter

Let’s create custom social login buttons for Google, Facebook, and Apple in Flutter without using any external packages. Step 1: Set Up Your Flutter Project If you haven’t already, start by creating a new Flutter project. Step 2: Design the UI for the Buttons We’ll create custom widgets for Google, Read more

By Deepika, 2 yearsAugust 24, 2024 ago
Calculator App

How to make Advanced Calculator app in flutter with source code stepwise

Creating an advanced calculator app in Flutter involves additional features beyond basic arithmetic, such as scientific functions (e.g., trigonometry, logarithms) and better state management. Below is a step-by-step guide with source code. Step 1: Set Up a New Flutter Project Step 2: Update pubspec.yaml Add the math_expressions package to handle Read more

By Deepika, 2 yearsAugust 23, 2024 ago
Calculator App

How to make simple Calculator app in flutter with source code stepwise

Creating a simple calculator app in Flutter involves setting up the user interface and implementing the basic arithmetic operations. Below is a step-by-step guide with the source code. Step 1: Set Up a New Flutter Project Step 2: Update pubspec.yaml Add any necessary dependencies if you’re planning to use external Read more

By Deepika, 2 yearsAugust 22, 2024 ago
FLUTTER APP

How to Create Image to Text App in Flutter with source code stepwise

Creating an image-to-text app in Flutter involves using Optical Character Recognition (OCR) technology to extract text from images. Here’s a step-by-step guide to building this app, including the necessary code snippets. Step 1: Set Up Flutter Project Run flutter pub get to install the dependencies. Step 2: Set Up Firebase Read more

By Deepika, 2 yearsAugust 21, 2024 ago
FLUTTER APP

How to make review and rating ui with flutter stepwise

Creating a review and rating UI in Flutter involves several steps. Below is a step-by-step guide to help you build a basic UI for a review and rating system. 1. Set Up Your Flutter Project 2. Add Dependencies 3. Design the UI 4. Build the Review and Rating UI 5. Read more

By Deepika, 2 yearsAugust 20, 2024 ago
FLUTTER APP

How to Make Image to Pdf Converter app in Flutter with Source Code

Creating an image-to-PDF converter app in Flutter involves several steps. Here’s a step-by-step guide, along with the necessary code snippets, to help you build this app. Step 1: Set Up Flutter Project Run flutter pub get to install the dependencies. Step 2: Implement UI Step 3: Handle Permissions (Android) Step Read more

By Deepika, 2 yearsAugust 20, 2024 ago
BottomNavigationBar

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: Here is a step-by-step guide: Step 1: Set Up Your Flutter Project If you haven’t already set up a Flutter project, you can create one using the following command in your Read more

By Deepika, 2 yearsAugust 19, 2024 ago
FLUTTER APP

Creating a Ludo app in Flutter with Source Code Step by step

Creating a Ludo app in Flutter is a comprehensive task that involves building a user interface, implementing game logic, managing state, and possibly integrating multiplayer functionality. Here’s a step-by-step guide to help you create a basic Ludo game in Flutter. Prerequisites Step 1: Project Setup Step 2: Basic UI Layout Read more

By Deepika, 2 yearsAugust 19, 2024 ago
FLUTTER APP

How to make Ludo app in Flutter with Source Code Step by step

Creating a Ludo app in Flutter is a more complex task, as it involves implementing game logic, UI design, and multiplayer features. Below is a simplified step-by-step guide to help you build a basic Ludo app in Flutter. This guide will focus on setting up the project, creating the game Read more

By Deepika, 2 yearsAugust 19, 2024 ago
FLUTTER APP

How to make PDF Reader app in Flutter with Source Code Step by step

Creating a PDF Reader app in Flutter involves setting up your project, adding necessary dependencies, writing the code, and testing the app. Below is a step-by-step guide to help you build a basic PDF Reader app in Flutter. Step 1: Set Up Your Development Environment Step 2: Create a New Read more

By Deepika, 2 yearsAugust 19, 2024 ago
FLUTTER APP

How to make QR Scanner app in Flutter with Source Code Step by step

Creating a QR Scanner app in Flutter involves several steps, including setting up your development environment, creating a new Flutter project, adding dependencies, writing the code, and testing the app. Below is a step-by-step guide to help you build a simple QR Scanner app. Step 1: Set Up Your Development Read more

By Deepika, 2 yearsAugust 19, 2024 ago

Posts pagination

1 2 … 4 Next
Recent Posts
  • Mastering SOLID Principles in Flutter: Building Scalable Apps February 24, 2026
  • GitHub Mac Setup: Upload Your First Project (Step-by-Step) February 19, 2026
  • How to Upload Your App to Google Play Store in 2026: Stepwise February 18, 2026
  • Your First SwiftUI Project in Xcode: A Step-by-Step Guide February 3, 2026
  • Top Flutter Interview Concepts: A Guide for Developers November 30, 2025
  • Chetu Flutter Interview Questions & Answers (2025) September 17, 2025
  • Implementing a Dynamic FAQ Screen UI in Flutter Using ExpansionTile March 29, 2025
  • Creating an Instruction UI Screen in Flutter Application March 29, 2025
  • Animated Backgrounds in Flutter: A Complete Guide March 15, 2025
  • How to make Diary App using flutter stepwise using getx August 31, 2024
Archives
Categories
  • AKTU MCQ (3)
  • ANDROID (8)
  • ANDROID APP (124)
  • Android App Development (22)
  • Android Interview Questions (3)
  • Android Projects (3)
  • ANDROID STUDIO (20)
  • Artificial Intelligence MCQ (2)
  • Biochemistry and Clinical Pathology MCQ (1)
  • BMI Calculator (1)
  • Book App (1)
  • BottomNavigationBar (2)
  • Calculator App (3)
  • Card Design (1)
  • CCC (5)
  • Chat App (6)
  • Chat GPT (3)
  • COA MCQ (3)
  • Coding Interview Questions (2)
  • Coding ninjas solution (4)
  • COLLECTION (16)
  • College Projects (3)
  • Color picker (1)
  • Company Interview Question (4)
  • COURSES (4)
  • D PHARMA MCQ (7)
  • Data Compression MCQ (1)
  • Data Science MCQ (1)
  • Data Structure (1)
  • Data Structure MCQ (1)
  • Digital Communication MCQ (2)
  • Digital Image Processing MCQ (8)
  • Digital marketing (1)
  • Drawer (1)
  • E-Commerce Android App (1)
  • Easeus Partition Master (1)
  • Ecommerce App (2)
  • Finance app (1)
  • Fitness App (6)
  • FLUTTER (69)
  • Flutter Animation (3)
  • FLUTTER APP (51)
  • Flutter Interview Questions (11)
  • FLUTTER UI (36)
  • Freelancer (9)
  • GAME APP (12)
  • GitHub (1)
  • Google AdSense (4)
  • Healthcare App (1)
  • Heath Education and Community Pharmacy MCQ (1)
  • HPC MCQ (7)
  • Human Anatomy and Physiology MCQ (1)
  • INTERVIEW QUESTIONS (44)
  • JCreator Pro (1)
  • Login Screen (32)
  • Machine Learning MCQ (3)
  • MCQ (1)
  • MCQ Questions (2)
  • Microsoft Visual Studio 2010 (1)
  • Movie App (1)
  • Music player app (11)
  • News App (7)
  • Onboarding Screen (17)
  • PDF App (7)
  • Pharmaceutical Chemistry MCQ (1)
  • Pharmaceutics – I MCQ (2)
  • Pharmacognosy MCQ (1)
  • PHP Projects (2)
  • Productivity (2)
  • Program (6)
  • PROJECT (11)
  • Project Ideas (3)
  • Python Interview Questions (3)
  • Python Projects (1)
  • QRCode (7)
  • Quiz App (9)
  • QUOTES (13)
  • Quran app (1)
  • Recipe App (1)
  • Renewable Energy All MCQ (7)
  • RPA MCQ (1)
  • SEO (8)
  • Software Developer (2)
  • Software Engineering MCQ (5)
  • SOURCE CODE (20)
  • Splash Screen (11)
  • SPM MCQ (1)
  • Stripe Payment Gateway in Flutter (1)
  • Swift (1)
  • Tasks Notes App (2)
  • Taxi App (1)
  • TCS NQT Questions (2)
  • Tic Tac Toe Game (1)
  • TOP 10 WORDPRESS THEME (4)
  • Uncategorized (7)
  • Video Player App (1)
  • Wallet App (1)
  • wallpaper App (2)
  • Weather App (4)
  • Web Developer (11)
  • WORDPRESS (13)
Recent Posts
  • Mastering SOLID Principles in Flutter: Building Scalable Apps
  • GitHub Mac Setup: Upload Your First Project (Step-by-Step)
  • How to Upload Your App to Google Play Store in 2026: Stepwise
  • Your First SwiftUI Project in Xcode: A Step-by-Step Guide
  • Top Flutter Interview Concepts: A Guide for Developers
Most Viewed Posts
  • Stripe Payment gateway integration in Flutter (99,424)
  • Top 50+ Flutter Interview Questions (50,665)
  • Top 10 Flutter Interview Questions (45,357)
  • How to Make Car Racing Game App with Android Studio (10,339)
  • SEO Practices Everyone Should Follow SEO Rules! (4,348)
Explore More

  • About
  • Contact
  • Disclaimer
  • Privacy Policy
Hestia | Developed by ThemeIsle