Giter Club home page Giter Club logo

Comments (6)

github-actions avatar github-actions commented on August 27, 2024

Hi I'm an AI powered bot that finds similar issues based off the issue title.

Please view the issues below to see if they solve your problem, and if the issue describes your problem please consider closing this one and thumbs upping the other issue to help us prioritize it. Thank you!

Closed similar issues:

Note: You can give me feedback by thumbs upping or thumbs downing this comment.

from maui.

RoiChen001 avatar RoiChen001 commented on August 27, 2024

Can repro this issue at Android platform on the latest 17.6.12(build 410)(8.0.21&8.0.40).

from maui.

keerthiduvvuri avatar keerthiduvvuri commented on August 27, 2024

@RoiChen001 sorry i have changed back to IOS, the bug is in IOS platform.

from maui.

Yash14j avatar Yash14j commented on August 27, 2024

GithubTags:#Rev:yaja;

from maui.

tj-devel709 avatar tj-devel709 commented on August 27, 2024

I have verified this behaves as stated above.

I wonder if the issue is the timing with the await Shell.Current.GoToAsync(".."); right after the SemanticScreenReader.Announce(RecipeName + " recipe added."); call.

If I remove the GoToAsync call, the full announcement is made.

Not sure how manageable this would be, but perhaps adding an async Announce method could be worth trying here:

namespace Microsoft.Maui.Essentials
{
    public static partial class SemanticScreenReader
    {
        public static async Task Announce(string text)
        {
            if (!UIAccessibility.IsVoiceOverRunning)
                return;

            var tcs = new TaskCompletionSource<bool>();

            MainThread.BeginInvokeOnMainThread(async () =>
            {
                await Task.Delay(100);
                UIAccessibility.PostNotification(UIAccessibilityPostNotification.Announcement, new NSString(text));
                // Adding some way of knowing/guessing when the Notification is finished reading?
                tcs.SetResult(true);
            });

            await tcs.Task;
        }
    }
}

Worth noting that there were timing issues with iOS Screenreader here: #3736

from maui.

tj-devel709 avatar tj-devel709 commented on August 27, 2024

There is also an interesting workaround here: https://stackoverflow.com/a/59329208

Perhaps a little tricky but has potential!

from maui.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.