mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
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:
parent
106ab98f87
commit
89f755c2df
@ -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',
|
||||
),
|
||||
],
|
||||
),
|
||||
|
||||
@ -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,
|
||||
);
|
||||
});
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user