Replace references to LinearProgressIndicator in CircularProgressIndicator example (#103349)

* Replace references to LinearProgressIndicator in CircularProgressIndicator example

* Add test

* fix copyright header
This commit is contained in:
Bryan Oltman 2022-05-09 16:04:02 -04:00 committed by GitHub
parent 106ab98f87
commit 89f755c2df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 2 deletions

View File

@ -61,12 +61,12 @@ class _MyStatefulWidgetState extends State<MyStatefulWidget>
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: <Widget>[
Text(
'Linear progress indicator with a fixed color',
'Circular progress indicator with a fixed color',
style: Theme.of(context).textTheme.headline6,
),
CircularProgressIndicator(
value: controller.value,
semanticsLabel: 'Linear progress indicator',
semanticsLabel: 'Circular progress indicator',
),
],
),

View File

@ -0,0 +1,19 @@
// 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_api_samples/material/progress_indicator/circular_progress_indicator.0.dart'
as example;
import 'package:flutter_test/flutter_test.dart';
void main() {
testWidgets('Finds CircularProgressIndicator', (WidgetTester tester) async {
await tester.pumpWidget(
const example.MyApp(),
);
expect(
find.bySemanticsLabel('Circular progress indicator'),
findsOneWidget,
);
});
}