Fix references in examples (#151204)

Part of https://github.com/flutter/flutter/issues/150800
This commit is contained in:
Michael Goderbauer 2024-07-03 10:56:48 -07:00 committed by GitHub
parent 91b928d52f
commit 56835d6039
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 7 additions and 7 deletions

View File

@ -4,7 +4,7 @@
import 'package:flutter/material.dart';
/// Flutter code sample for [Carousel].
/// Flutter code sample for [CarouselView].
void main() => runApp(const CarouselExampleApp());

View File

@ -4,7 +4,7 @@
import 'package:flutter/material.dart';
/// Flutter code sample for [ActionChoice].
/// Flutter code sample for [ChoiceChip].
void main() => runApp(const ChipApp());

View File

@ -138,7 +138,7 @@ typedef RemovedItemBuilder<T> = Widget Function(T item, BuildContext context, An
/// This class only exposes as much of the Dart List API as is needed by the
/// sample app. More list methods are easily added, however methods that
/// mutate the list must make the same changes to the animated list in terms
/// of [AnimatedGridState.insertItem] and [AnimatedGrid.removeItem].
/// of [AnimatedGridState.insertItem] and [AnimatedGridState.removeItem].
class ListModel<E> {
ListModel({
required this.listKey,

View File

@ -122,7 +122,7 @@ typedef RemovedItemBuilder<T> = Widget Function(T item, BuildContext context, An
/// This class only exposes as much of the Dart List API as is needed by the
/// sample app. More list methods are easily added, however methods that
/// mutate the list must make the same changes to the animated list in terms
/// of [AnimatedListState.insertItem] and [AnimatedList.removeItem].
/// of [AnimatedListState.insertItem] and [AnimatedListState.removeItem].
class ListModel<E> {
ListModel({
required this.listKey,

View File

@ -4,7 +4,7 @@
import 'package:flutter/material.dart';
/// Flutter code sample for [WidgetBindingsObserver].
/// Flutter code sample for [WidgetsBindingObserver].
void main() => runApp(const WidgetBindingObserverExampleApp());

View File

@ -6,7 +6,7 @@ import 'dart:typed_data';
import 'package:flutter/material.dart';
/// Flutter code sample for [EditableText.onContentInserted].
/// Flutter code sample for [EditableText.contentInsertionConfiguration].
void main() => runApp(const KeyboardInsertedContentApp());

View File

@ -5,7 +5,7 @@
import 'package:flutter/material.dart';
import 'package:flutter/scheduler.dart';
/// Flutter code sample for [IsScrollingListener].
/// Flutter code sample for [ScrollPosition.isScrollingNotifier].
void main() {
runApp(const IsScrollingListenerApp());
}