Skip to content

Commit

Permalink
Merge PR #1718
Browse files Browse the repository at this point in the history
  • Loading branch information
fdennis committed Oct 25, 2024
2 parents 1727cd9 + 177c052 commit f2477b1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/app/views/user_interaction.dart
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
import 'dart:async';

import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart';
import 'package:local_notifier/local_notifier.dart';

import '../message.dart';
Expand Down Expand Up @@ -156,6 +157,8 @@ UserInteractionController _dialogUserInteraction(
Widget? icon,
void Function()? onCancel,
}) {
String a11yLabel = '$title $description';
SemanticsService.announce(a11yLabel, TextDirection.ltr);
var completed = false;
var wasPopped = false;
final controller = _UserInteractionController(
Expand Down

0 comments on commit f2477b1

Please sign in to comment.