mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

Mostly tweaks for better focus management, namely: * Use `autofocus` throughout so the a11y focus is transferred to a logical place when overlaid content pops up (screen transitions, dialogs). * Consolidate "enabled" and "disabled" widgets into the same screen. Otherwise, when only a disabled widget is shown, there's nothing to focus on and the screen reader is lost.
34 lines
1.1 KiB
Dart
34 lines
1.1 KiB
Dart
// Copyright 2014 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
import 'package:a11y_assessments/use_cases/text_field_password.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
import 'test_utils.dart';
|
|
|
|
void main() {
|
|
testWidgets('text field password can run', (WidgetTester tester) async {
|
|
await pumpsUseCase(tester, TextFieldPasswordUseCase());
|
|
expect(find.byType(TextField), findsExactly(2));
|
|
|
|
// Test the enabled password
|
|
{
|
|
final Finder finder = find.byKey(const Key('enabled password'));
|
|
await tester.tap(finder);
|
|
await tester.pumpAndSettle();
|
|
await tester.enterText(finder, 'abc');
|
|
await tester.pumpAndSettle();
|
|
expect(find.text('abc'), findsOneWidget);
|
|
}
|
|
|
|
// Test the disabled password
|
|
{
|
|
final Finder finder = find.byKey(const Key('disabled password'));
|
|
final TextField passwordField = tester.widget<TextField>(finder);
|
|
expect(passwordField.enabled, isFalse);
|
|
}
|
|
});
|
|
}
|