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.
55 lines
1.2 KiB
Dart
55 lines
1.2 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 SliderUseCase extends UseCase {
|
|
|
|
@override
|
|
String get name => 'Slider';
|
|
|
|
@override
|
|
String get route => '/slider';
|
|
|
|
@override
|
|
Widget build(BuildContext context) => const MainWidget();
|
|
}
|
|
|
|
class MainWidget extends StatefulWidget {
|
|
const MainWidget({super.key});
|
|
|
|
@override
|
|
State<MainWidget> createState() => MainWidgetState();
|
|
}
|
|
|
|
class MainWidgetState extends State<MainWidget> {
|
|
double currentSliderValue = 20;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
backgroundColor: Theme.of(context).colorScheme.inversePrimary,
|
|
title: const Text('Slider'),
|
|
),
|
|
body: Center(
|
|
child: Slider(
|
|
autofocus: true,
|
|
value: currentSliderValue,
|
|
max: 100,
|
|
divisions: 5,
|
|
label: currentSliderValue.round().toString(),
|
|
onChanged: (double value) {
|
|
setState(() {
|
|
currentSliderValue = value;
|
|
});
|
|
},
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|