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
5493fe46
Unverified
Commit
5493fe46
authored
Apr 03, 2019
by
Michael Goderbauer
Committed by
GitHub
Apr 03, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moar Videos (#30452)
parent
516ffd0c
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
14 additions
and
0 deletions
+14
-0
cupertino.dart
packages/flutter/lib/cupertino.dart
+2
-0
material.dart
packages/flutter/lib/material.dart
+2
-0
key.dart
packages/flutter/lib/src/foundation/key.dart
+2
-0
custom_paint.dart
packages/flutter/lib/src/rendering/custom_paint.dart
+2
-0
framework.dart
packages/flutter/lib/src/widgets/framework.dart
+6
-0
No files found.
packages/flutter/lib/cupertino.dart
View file @
5493fe46
...
...
@@ -5,6 +5,8 @@
/// Flutter widgets implementing the current iOS design language.
///
/// To use, import `package:flutter/cupertino.dart`.
///
/// {@youtube 560 315 https://www.youtube.com/watch?v=3PdUaidHc-E}
library
cupertino
;
export
'src/cupertino/action_sheet.dart'
;
...
...
packages/flutter/lib/material.dart
View file @
5493fe46
...
...
@@ -6,6 +6,8 @@
///
/// To use, import `package:flutter/material.dart`.
///
/// {@youtube 560 315 https://www.youtube.com/watch?v=DL0Ix1lnC4w}
///
/// See also:
///
/// * [flutter.io/widgets](https://flutter.io/widgets/)
...
...
packages/flutter/lib/src/foundation/key.dart
View file @
5493fe46
...
...
@@ -11,6 +11,8 @@ import 'package:meta/meta.dart';
/// A new widget will only be used to update an existing element if its key is
/// the same as the key of the current widget associated with the element.
///
/// {@youtube 560 315 https://www.youtube.com/watch?v=kn0EOS-ZiIc}
///
/// Keys must be unique amongst the [Element]s with the same parent.
///
/// Subclasses of [Key] should either subclass [LocalKey] or [GlobalKey].
...
...
packages/flutter/lib/src/rendering/custom_paint.dart
View file @
5493fe46
...
...
@@ -39,6 +39,8 @@ typedef SemanticsBuilderCallback = List<CustomPainterSemantics> Function(Size si
/// is provided, to check if the new instance actually represents different
/// information.
///
/// {@youtube 560 315 https://www.youtube.com/watch?v=vvI_NUXK00s}
///
/// The most efficient way to trigger a repaint is to either:
///
/// * Extend this class and supply a `repaint` argument to the constructor of
...
...
packages/flutter/lib/src/widgets/framework.dart
View file @
5493fe46
...
...
@@ -439,6 +439,8 @@ abstract class Widget extends DiagnosticableTree {
/// description of the user interface is fully concrete (e.g., consists
/// entirely of [RenderObjectWidget]s, which describe concrete [RenderObject]s).
///
/// {@youtube 560 315 https://www.youtube.com/watch?v=wE7khGHVkYY}
///
/// Stateless widget are useful when the part of the user interface you are
/// describing does not depend on anything other than the configuration
/// information in the object itself and the [BuildContext] in which the widget
...
...
@@ -608,6 +610,8 @@ abstract class StatelessWidget extends Widget {
/// [BuildContext] in which the widget is inflated, consider using
/// [StatelessWidget].
///
/// {@youtube 560 315 https://www.youtube.com/watch?v=AqCMFXEmf3w}
///
/// [StatefulWidget] instances themselves are immutable and store their mutable
/// state either in separate [State] objects that are created by the
/// [createState] method, or in objects to which that [State] subscribes, for
...
...
@@ -1484,6 +1488,8 @@ abstract class ParentDataWidget<T extends RenderObjectWidget> extends ProxyWidge
/// Inherited widgets, when referenced in this way, will cause the consumer to
/// rebuild when the inherited widget itself changes state.
///
/// {@youtube 560 315 https://www.youtube.com/watch?v=Zbm3hjPjQMk}
///
/// {@tool sample}
///
/// The following is a skeleton of an inherited widget called `FrogColor`:
...
...
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