Close Menu
  • Home
  • AI
  • Big Data
  • Cloud Computing
  • iOS Development
  • IoT
  • IT/ Cybersecurity
  • Tech
    • Nanotechnology
    • Green Technology
    • Apple
    • Software Development
    • Software Engineering

Subscribe to Updates

Get the latest technology news from Bigteetechhub about IT, Cybersecurity and Big Data.

    What's Hot

    The Download: The secrets of vitamin D, and an AI party in Africa

    November 23, 2025

    Cisco U. Learning Deals 2025: One Week. Major Savings.

    November 23, 2025

    network – Mac “stuck” on Cloudflare secure DNS somehow; how to get rid of it

    November 23, 2025
    Facebook X (Twitter) Instagram
    Facebook X (Twitter) Instagram
    Big Tee Tech Hub
    • Home
    • AI
    • Big Data
    • Cloud Computing
    • iOS Development
    • IoT
    • IT/ Cybersecurity
    • Tech
      • Nanotechnology
      • Green Technology
      • Apple
      • Software Development
      • Software Engineering
    Big Tee Tech Hub
    Home»iOS Development»ios – Flutter overlays (Dialog, BottomSheet, ..etc) close immediately after opening on iPadOS 26.1
    iOS Development

    ios – Flutter overlays (Dialog, BottomSheet, ..etc) close immediately after opening on iPadOS 26.1

    big tee tech hubBy big tee tech hubNovember 11, 2025001 Min Read
    Share Facebook Twitter Pinterest Copy Link LinkedIn Tumblr Email Telegram WhatsApp
    Follow Us
    Google News Flipboard
    ios – Flutter overlays (Dialog, BottomSheet, ..etc) close immediately after opening on iPadOS 26.1
    Share
    Facebook Twitter LinkedIn Pinterest Email Copy Link


    This is a known issue in Flutter β€” see the GitHub issue here:
    πŸ”— flutter/flutter#177992

    It happens on iPadOS 26.1 when showing a dialog, bottom sheet, or end drawer with barrierDismissible: true.

    βœ… Temporary workaround:

    You can manually control the outside-tap behavior using a TapRegion and ignore taps that happen too quickly after opening the dialog.

    Here’s the workaround from the Flutter GitHub issue comments:
    πŸ”— flutter/flutter#177992 (comment)

    final now = DateTime.now();
    return showDialog(
      context: context,
      barrierDismissible: false,
      builder: (BuildContext context) {
        return TapRegion(
          onTapOutside: (_) {
            // Workaround for 
            if (DateTime.now().difference(now) < Duration(milliseconds: 500)) {
              return;
            }
            if (Navigator.canPop(context)) {
              Navigator.pop(context);
            }
          },
          child: ... // your dialog content
        );
      },
    );
    

    This prevents the dialog or drawer from closing immediately due to an unintended outside tap event on iPadOS 26.1.




    Source link

    ..etc BottomSheet close Dialog Flutter immediately iOS iPadOS Opening overlays
    Follow on Google News Follow on Flipboard
    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email Copy Link
    tonirufai
    big tee tech hub
    • Website

    Related Posts

    swift – How to implement backup/restore to icloud in a flutter ios app

    November 22, 2025

    ios – Apple Mail messages disappeared after IMAP deletion + local move failure (no disk space) – emlx files still exist but appear empty

    November 21, 2025

    swift – iOS 26: UIScrollView topEdgeEffect not working?

    November 20, 2025
    Add A Comment
    Leave A Reply Cancel Reply

    Editors Picks

    The Download: The secrets of vitamin D, and an AI party in Africa

    November 23, 2025

    Cisco U. Learning Deals 2025: One Week. Major Savings.

    November 23, 2025

    network – Mac “stuck” on Cloudflare secure DNS somehow; how to get rid of it

    November 23, 2025

    The future of AI isn’t chat: Why user experience will make or break the next wave of applications

    November 23, 2025
    About Us
    About Us

    Welcome To big tee tech hub. Big tee tech hub is a Professional seo tools Platform. Here we will provide you only interesting content, which you will like very much. We’re dedicated to providing you the best of seo tools, with a focus on dependability and tools. We’re working to turn our passion for seo tools into a booming online website. We hope you enjoy our seo tools as much as we enjoy offering them to you.

    Don't Miss!

    The Download: The secrets of vitamin D, and an AI party in Africa

    November 23, 2025

    Cisco U. Learning Deals 2025: One Week. Major Savings.

    November 23, 2025

    Subscribe to Updates

    Get the latest technology news from Bigteetechhub about IT, Cybersecurity and Big Data.

      • About Us
      • Contact Us
      • Disclaimer
      • Privacy Policy
      • Terms and Conditions
      © 2025 bigteetechhub.All Right Reserved

      Type above and press Enter to search. Press Esc to cancel.