forked from flutter/packages
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add some cross references in the docs, move an example to a dartpad e…
…xample (#145571) ## Description This adds some "See also" links to some docs for `TweenAnimationBuilder` and `ValueListenableBuilder`. Also, moved a "snippet" example in `ValueListenableBuilder` into the examples directory as a Dartpad example. ## Tests - Added test for the example.
- Loading branch information
1 parent
784f19c
commit 0f685f8
Showing
4 changed files
with
139 additions
and
55 deletions.
There are no files selected for viewing
94 changes: 94 additions & 0 deletions
94
examples/api/lib/widgets/value_listenable_builder/value_listenable_builder.0.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
// 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'; | ||
|
||
/// Flutter code sample for [ValueListenableBuilder]. | ||
void main() => runApp(const ValueListenableBuilderExampleApp()); | ||
|
||
class ValueListenableBuilderExampleApp extends StatelessWidget { | ||
const ValueListenableBuilderExampleApp({super.key}); | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return const MaterialApp( | ||
home: ValueListenableBuilderExample(), | ||
); | ||
} | ||
} | ||
|
||
class ValueListenableBuilderExample extends StatefulWidget { | ||
const ValueListenableBuilderExample({super.key}); | ||
|
||
@override | ||
State<ValueListenableBuilderExample> createState() => _ValueListenableBuilderExampleState(); | ||
} | ||
|
||
class _ValueListenableBuilderExampleState extends State<ValueListenableBuilderExample> { | ||
final ValueNotifier<int> _counter = ValueNotifier<int>(0); | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return Scaffold( | ||
appBar: AppBar( | ||
title: const Text('ValueListenableBuilder Sample'), | ||
), | ||
body: Center( | ||
child: Column( | ||
mainAxisAlignment: MainAxisAlignment.center, | ||
children: <Widget>[ | ||
const Text('You have pushed the button this many times:'), | ||
ValueListenableBuilder<int>( | ||
builder: (BuildContext context, int value, Widget? child) { | ||
// This builder will only get called when the _counter | ||
// is updated. | ||
return Row( | ||
mainAxisAlignment: MainAxisAlignment.center, | ||
crossAxisAlignment: CrossAxisAlignment.start, | ||
children: <Widget>[ | ||
CountDisplay(count: value), | ||
child!, | ||
], | ||
); | ||
}, | ||
valueListenable: _counter, | ||
// The child parameter is most helpful if the child is | ||
// expensive to build and does not depend on the value from | ||
// the notifier. | ||
child: const Padding( | ||
padding: EdgeInsets.all(10.0), | ||
child: SizedBox( | ||
width: 40, | ||
height: 40, | ||
child: FlutterLogo(size: 40), | ||
), | ||
), | ||
), | ||
], | ||
), | ||
), | ||
floatingActionButton: FloatingActionButton( | ||
child: const Icon(Icons.plus_one), | ||
onPressed: () => _counter.value += 1, | ||
), | ||
); | ||
} | ||
} | ||
|
||
class CountDisplay extends StatelessWidget { | ||
const CountDisplay({super.key, required this.count}); | ||
|
||
final int count; | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return Container( | ||
width: 100, | ||
height: 100, | ||
padding: const EdgeInsetsDirectional.all(10), | ||
child: Text('$count', style: Theme.of(context).textTheme.headline4), | ||
); | ||
} | ||
} |
35 changes: 35 additions & 0 deletions
35
examples/api/test/widgets/value_listenable_builder/value_listenable_builder.0_test.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
// 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 'package:flutter_api_samples/widgets/value_listenable_builder/value_listenable_builder.0.dart' as example; | ||
import 'package:flutter_test/flutter_test.dart'; | ||
|
||
void main() { | ||
testWidgets('Tapping FAB increments counter', (WidgetTester tester) async { | ||
await tester.pumpWidget( | ||
const MaterialApp( | ||
home: example.ValueListenableBuilderExample(), | ||
), | ||
); | ||
|
||
String getCount() { | ||
return (tester.widget( | ||
find.descendant( | ||
of: find.byType(example.CountDisplay), | ||
matching: find.byType(Text), | ||
), | ||
) as Text).data!; | ||
} | ||
|
||
expect(find.text('You have pushed the button this many times:'), findsOneWidget); | ||
expect(find.text('0'), findsOneWidget); | ||
expect(find.byIcon(Icons.plus_one), findsOneWidget); | ||
expect(getCount(), equals('0')); | ||
|
||
await tester.tap(find.byType(FloatingActionButton).first); | ||
await tester.pumpAndSettle(); | ||
expect(getCount(), equals('1')); | ||
}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters