Unverified Commit 89f755c2 authored by Bryan Oltman's avatar Bryan Oltman Committed by GitHub

Replace references to LinearProgressIndicator in CircularProgressIndicator example (#103349)

* Replace references to LinearProgressIndicator in CircularProgressIndicator example

* Add test

* fix copyright header
parent 106ab98f
......@@ -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',
),
],
),
......
// 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,
);
});
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment