Skip to content

Commit

Permalink
Replace references to LinearProgressIndicator in CircularProgressIndi…
Browse files Browse the repository at this point in the history
…cator example (flutter#103349)

* Replace references to LinearProgressIndicator in CircularProgressIndicator example

* Add test

* fix copyright header
  • Loading branch information
bryanoltman authored May 9, 2022
1 parent 106ab98 commit 89f755c
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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',
),
],
),
Expand Down
Original file line number Diff line number Diff line change
@@ -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,
);
});
}

0 comments on commit 89f755c

Please sign in to comment.