
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.
28 lines
658 B
Dart
28 lines
658 B
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:flutter/widgets.dart';
|
|
|
|
import 'check_box_list_tile.dart';
|
|
import 'date_picker.dart';
|
|
import 'dialog.dart';
|
|
import 'slider.dart';
|
|
import 'text_field.dart';
|
|
import 'text_field_password.dart';
|
|
|
|
abstract class UseCase {
|
|
String get name;
|
|
String get route;
|
|
Widget build(BuildContext context);
|
|
}
|
|
|
|
final List<UseCase> useCases = <UseCase>[
|
|
CheckBoxListTile(),
|
|
DialogUseCase(),
|
|
SliderUseCase(),
|
|
TextFieldUseCase(),
|
|
TextFieldPasswordUseCase(),
|
|
DatePickerUseCase(),
|
|
];
|