Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
934e6900
Unverified
Commit
934e6900
authored
Dec 03, 2022
by
Todd Volkert
Committed by
GitHub
Dec 03, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add widget of the week videos (#116451)
(and remove one video that was listed twice with the same widget)
parent
f36874cb
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
14 additions
and
4 deletions
+14
-4
autocomplete.dart
packages/flutter/lib/src/material/autocomplete.dart
+2
-2
gradient.dart
packages/flutter/lib/src/painting/gradient.dart
+2
-0
text_style.dart
packages/flutter/lib/src/painting/text_style.dart
+2
-0
actions.dart
packages/flutter/lib/src/widgets/actions.dart
+2
-0
async.dart
packages/flutter/lib/src/widgets/async.dart
+2
-0
basic.dart
packages/flutter/lib/src/widgets/basic.dart
+0
-2
focus_scope.dart
packages/flutter/lib/src/widgets/focus_scope.dart
+2
-0
shortcuts.dart
packages/flutter/lib/src/widgets/shortcuts.dart
+2
-0
No files found.
packages/flutter/lib/src/material/autocomplete.dart
View file @
934e6900
...
@@ -12,6 +12,8 @@ import 'theme.dart';
...
@@ -12,6 +12,8 @@ import 'theme.dart';
/// {@macro flutter.widgets.RawAutocomplete.RawAutocomplete}
/// {@macro flutter.widgets.RawAutocomplete.RawAutocomplete}
///
///
/// {@youtube 560 315 https://www.youtube.com/watch?v=-Nny8kzW380}
///
/// {@tool dartpad}
/// {@tool dartpad}
/// This example shows how to create a very basic Autocomplete widget using the
/// This example shows how to create a very basic Autocomplete widget using the
/// default UI.
/// default UI.
...
@@ -26,8 +28,6 @@ import 'theme.dart';
...
@@ -26,8 +28,6 @@ import 'theme.dart';
/// ** See code in examples/api/lib/material/autocomplete/autocomplete.1.dart **
/// ** See code in examples/api/lib/material/autocomplete/autocomplete.1.dart **
/// {@end-tool}
/// {@end-tool}
///
///
/// {@youtube 560 315 https://www.youtube.com/watch?v=-Nny8kzW380}
///
/// See also:
/// See also:
///
///
/// * [RawAutocomplete], which is what Autocomplete is built upon, and which
/// * [RawAutocomplete], which is what Autocomplete is built upon, and which
...
...
packages/flutter/lib/src/painting/gradient.dart
View file @
934e6900
...
@@ -336,6 +336,8 @@ abstract class Gradient {
...
@@ -336,6 +336,8 @@ abstract class Gradient {
/// A 2D linear gradient.
/// A 2D linear gradient.
///
///
/// {@youtube 560 315 https://www.youtube.com/watch?v=gYNTcgZVcWw}
///
/// This class is used by [BoxDecoration] to represent linear gradients. This
/// This class is used by [BoxDecoration] to represent linear gradients. This
/// abstracts out the arguments to the [ui.Gradient.linear] constructor from
/// abstracts out the arguments to the [ui.Gradient.linear] constructor from
/// the `dart:ui` library.
/// the `dart:ui` library.
...
...
packages/flutter/lib/src/painting/text_style.dart
View file @
934e6900
...
@@ -38,6 +38,8 @@ const double _kDefaultFontSize = 14.0;
...
@@ -38,6 +38,8 @@ const double _kDefaultFontSize = 14.0;
/// An immutable style describing how to format and paint text.
/// An immutable style describing how to format and paint text.
///
///
/// {@youtube 560 315 https://www.youtube.com/watch?v=1z6YP7YmvwA}
///
/// ### Bold
/// ### Bold
///
///
/// {@tool snippet}
/// {@tool snippet}
...
...
packages/flutter/lib/src/widgets/actions.dart
View file @
934e6900
...
@@ -585,6 +585,8 @@ class ActionDispatcher with Diagnosticable {
...
@@ -585,6 +585,8 @@ class ActionDispatcher with Diagnosticable {
/// A widget that establishes an [ActionDispatcher] and a map of [Intent] to
/// A widget that establishes an [ActionDispatcher] and a map of [Intent] to
/// [Action] to be used by its descendants when invoking an [Action].
/// [Action] to be used by its descendants when invoking an [Action].
///
///
/// {@youtube 560 315 https://www.youtube.com/watch?v=XawP1i314WM}
///
/// Actions are typically invoked using [Actions.invoke] with the context
/// Actions are typically invoked using [Actions.invoke] with the context
/// containing the ambient [Actions] widget.
/// containing the ambient [Actions] widget.
///
///
...
...
packages/flutter/lib/src/widgets/async.dart
View file @
934e6900
...
@@ -447,6 +447,8 @@ class StreamBuilder<T> extends StreamBuilderBase<T, AsyncSnapshot<T>> {
...
@@ -447,6 +447,8 @@ class StreamBuilder<T> extends StreamBuilderBase<T, AsyncSnapshot<T>> {
/// Widget that builds itself based on the latest snapshot of interaction with
/// Widget that builds itself based on the latest snapshot of interaction with
/// a [Future].
/// a [Future].
///
///
/// {@youtube 560 315 https://www.youtube.com/watch?v=zEdw_1B7JHY}
///
/// The [future] must have been obtained earlier, e.g. during [State.initState],
/// The [future] must have been obtained earlier, e.g. during [State.initState],
/// [State.didUpdateWidget], or [State.didChangeDependencies]. It must not be
/// [State.didUpdateWidget], or [State.didChangeDependencies]. It must not be
/// created during the [State.build] or [StatelessWidget.build] method call when
/// created during the [State.build] or [StatelessWidget.build] method call when
...
...
packages/flutter/lib/src/widgets/basic.dart
View file @
934e6900
...
@@ -7465,8 +7465,6 @@ typedef StatefulWidgetBuilder = Widget Function(BuildContext context, StateSette
...
@@ -7465,8 +7465,6 @@ typedef StatefulWidgetBuilder = Widget Function(BuildContext context, StateSette
///
///
/// {@tool snippet}
/// {@tool snippet}
///
///
/// {@youtube 560 315 https://www.youtube.com/watch?v=syvT63CosNE}
///
/// This example shows using an inline StatefulBuilder that rebuilds and that
/// This example shows using an inline StatefulBuilder that rebuilds and that
/// also has state.
/// also has state.
///
///
...
...
packages/flutter/lib/src/widgets/focus_scope.dart
View file @
934e6900
...
@@ -12,6 +12,8 @@ import 'inherited_notifier.dart';
...
@@ -12,6 +12,8 @@ import 'inherited_notifier.dart';
/// A widget that manages a [FocusNode] to allow keyboard focus to be given
/// A widget that manages a [FocusNode] to allow keyboard focus to be given
/// to this widget and its descendants.
/// to this widget and its descendants.
///
///
/// {@youtube 560 315 https://www.youtube.com/watch?v=JCDfh5bs1xc}
///
/// When the focus is gained or lost, [onFocusChange] is called.
/// When the focus is gained or lost, [onFocusChange] is called.
///
///
/// For keyboard events, [onKey] and [onKeyEvent] are called if
/// For keyboard events, [onKey] and [onKeyEvent] are called if
...
...
packages/flutter/lib/src/widgets/shortcuts.dart
View file @
934e6900
...
@@ -872,6 +872,8 @@ class ShortcutManager with Diagnosticable, ChangeNotifier {
...
@@ -872,6 +872,8 @@ class ShortcutManager with Diagnosticable, ChangeNotifier {
/// A widget that creates key bindings to specific actions for its
/// A widget that creates key bindings to specific actions for its
/// descendants.
/// descendants.
///
///
/// {@youtube 560 315 https://www.youtube.com/watch?v=6ZcQmdoz9N8}
///
/// This widget establishes a [ShortcutManager] to be used by its descendants
/// This widget establishes a [ShortcutManager] to be used by its descendants
/// when invoking an [Action] via a keyboard key combination that maps to an
/// when invoking an [Action] via a keyboard key combination that maps to an
/// [Intent].
/// [Intent].
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment