Explore

flutter ×
  • screenshot

    What's New in Flutter 3.22

    In this release, the Flutter tool enforces a policy regarding the versions that it supports for...

  • How and why I built Backyard Hunt

    Explore the journey of Tomas Radvansky, from medical studies to tech innovation with Backyard Hunt, a...

  • screenshot

    I want to disable the swipe back functionality in iOS Safari on Flutter

    During Flutter development, I learned that swiping the screen navigates back. I resolved the issue by...

  • screenshot

    How do I manage Dio in Flutter projects using Riverpod

    Let's say we have API and we want to manage all api with Dio. How can...

  • screenshot

    how to wrap an unconstrained child in SingleChildScrollView

    Below code is a root layout for every route page in cross platform app. I got...

  • screenshot

    Android CLT: SDK Manager not found

    I have installed Android Command Line Tools on Windows 10. I am unable to install Android...

  • screenshot

    Reading data from Excel in an application

    I'm making a mobile application Schedule for a university. Can I load an Excel file into...

  • screenshot

    How To Build a Referral System for Your Flutter Web App

    Firebase Dynamic Links will be shut down on August 25, 2025. This article explains how to...

  • screenshot

    Exploring Dart Fundamentals - Part 4: Data Structures and Null Safety in Dart

    This article dives deep into Dart programming, covering data structures like lists, maps, sets, and the...

  • screenshot

    Error Domain=AVFoundationErrorDomain Code=-11828 "Cannot Open"

    void initializePlayer(Map<String, dynamic> songData) { BetterPlayerDataSource dataSource = BetterPlayerDataSource( BetterPlayerDataSourceType.network, songData['manifestUri'] ?? '', drmConfiguration: BetterPlayerDrmConfiguration( drmType:...

  • screenshot

    Google Play cannot verify card details

    I prepared in-app purchases product in Google Play Console, then implement the whole logic behind that...

  • screenshot

    Timer Widget not working in stream flutter

    I have creaetd a timer widget with the help of stream. But the time widget doesnt...

  • screenshot

    Thingsboard report mismatch sender Id using FCM

    We have been working on implementing push notifications in our IoT-based application using Thingsboard notification (Thingsboard...

  • screenshot

    Flutter: best way to load multiple assets using just_audio package

    I have some numbers to play from 0.mp3 to 46.mp3 so I initialise them like this:...

  • screenshot

    Flutter sentry : add source map to sentry by sentry_dart_plugin

    I want to use Sentry for my flutter web project so I added these lines to...

  • screenshot

    Issue with GetIt Dependency in vm:entry-point Pragma

    Hope you're doing well! So, I've been using GetIt to handle dependencies in my project, and...

  • screenshot

    Text Color didn't change

    enter image description hereI try to use FocusNode() in TextFormField so it will detect when I...

  • screenshot

    Flutter Webview translate the page

    I use webview_flutter to show some pages in flutter, and I need to translate pages with...

  • screenshot

    Adding Solana connect to a Flutter app with WalletConnect

    I'm trying to add a Connect wallet functionality to a Flutter application with Wallet Connect. walletconnect_flutter_v2:...

  • screenshot

    How do I protect the keyboard cursor that will cover the whole value in the text field after using the requestFocus()?

    I create my custom search picker using the TextFormField widget and the showMenu function. This dialog...

  • screenshot

    Unexpected character: '?' @ line 1, column 1. ?pluginManagement {

    After flutter I'm facing this issues how i can resolve this issues. Launching lib\main.dart on sdk...

  • screenshot

    Invalid character (at character 68) flutter-update-........europe-west1.firebasedatabase.app/

    it seems I've got a problem with the real database on Firebase database. the address of...

  • screenshot

    SOLID Principles Using Dart: Everything You Need to Know

    SOLID principles provide a time-tested blueprint for achieving this in object-oriented programming languages like Dart. The...

  • screenshot

    Dependency Injection in Dart: An Easy Guide for Beginners

    Dependency Injection (DI) is a technique that helps manage dependencies between components. Instead of a component...