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.
53 lines
1.3 KiB
Dart
53 lines
1.3 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:flutter/material.dart';
|
|
|
|
import 'use_cases.dart';
|
|
|
|
class DatePickerUseCase extends UseCase {
|
|
|
|
@override
|
|
String get name => 'DatePicker';
|
|
|
|
@override
|
|
String get route => '/date-picker';
|
|
|
|
@override
|
|
Widget build(BuildContext context) => const _MainWidget();
|
|
}
|
|
|
|
class _MainWidget extends StatefulWidget {
|
|
const _MainWidget();
|
|
|
|
@override
|
|
State<_MainWidget> createState() => _MainWidgetState();
|
|
}
|
|
|
|
class _MainWidgetState extends State<_MainWidget> {
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
backgroundColor: Theme.of(context).colorScheme.inversePrimary,
|
|
title: const Text('DatePicker'),
|
|
),
|
|
body: Center(
|
|
child: TextButton(
|
|
autofocus: true,
|
|
onPressed: () => showDatePicker(
|
|
context: context,
|
|
initialEntryMode: DatePickerEntryMode.calendarOnly,
|
|
initialDate: DateTime.now(),
|
|
firstDate: DateTime.now().subtract(const Duration(days: 365)),
|
|
lastDate: DateTime.now().add(const Duration(days: 365)),
|
|
),
|
|
child: const Text('Show Date Picker'),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|