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
51960b44
Commit
51960b44
authored
Sep 20, 2016
by
Adam Barth
Committed by
GitHub
Sep 20, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Complete dartdocs for material/material.dart (#5941)
parent
400585cb
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
29 additions
and
27 deletions
+29
-27
icon_button.dart
packages/flutter/lib/src/material/icon_button.dart
+1
-1
material.dart
packages/flutter/lib/src/material/material.dart
+25
-23
framework.dart
packages/flutter/lib/src/widgets/framework.dart
+1
-1
icon_button_test.dart
packages/flutter/test/material/icon_button_test.dart
+2
-2
No files found.
packages/flutter/lib/src/material/icon_button.dart
View file @
51960b44
...
@@ -126,7 +126,7 @@ class IconButton extends StatelessWidget {
...
@@ -126,7 +126,7 @@ class IconButton extends StatelessWidget {
maxHeight:
size
,
maxHeight:
size
,
child:
new
ConstrainedBox
(
child:
new
ConstrainedBox
(
constraints:
new
BoxConstraints
.
loose
(
constraints:
new
BoxConstraints
.
loose
(
const
Size
.
square
(
kDefaultSplash
Radius
*
2.0
)
const
Size
.
square
(
InkSplash
.
default
Radius
*
2.0
)
),
),
child:
new
Align
(
child:
new
Align
(
alignment:
alignment
,
alignment:
alignment
,
...
...
packages/flutter/lib/src/material/material.dart
View file @
51960b44
...
@@ -69,6 +69,9 @@ abstract class InkSplash {
...
@@ -69,6 +69,9 @@ abstract class InkSplash {
/// Free up the resources associated with this reaction.
/// Free up the resources associated with this reaction.
void
dispose
();
void
dispose
();
/// The default radius of an ink splash in logical pixels.
static
const
double
defaultRadius
=
35.0
;
}
}
/// A visual emphasis on a part of a [Material] receiving user interaction.
/// A visual emphasis on a part of a [Material] receiving user interaction.
...
@@ -288,7 +291,6 @@ class _MaterialState extends State<Material> {
...
@@ -288,7 +291,6 @@ class _MaterialState extends State<Material> {
const
Duration
_kHighlightFadeDuration
=
const
Duration
(
milliseconds:
200
);
const
Duration
_kHighlightFadeDuration
=
const
Duration
(
milliseconds:
200
);
const
Duration
_kUnconfirmedSplashDuration
=
const
Duration
(
seconds:
1
);
const
Duration
_kUnconfirmedSplashDuration
=
const
Duration
(
seconds:
1
);
const
double
kDefaultSplashRadius
=
35.0
;
// logical pixels
const
double
_kSplashConfirmedVelocity
=
1.0
;
// logical pixels per millisecond
const
double
_kSplashConfirmedVelocity
=
1.0
;
// logical pixels per millisecond
const
double
_kSplashInitialSize
=
0.0
;
// logical pixels
const
double
_kSplashInitialSize
=
0.0
;
// logical pixels
...
@@ -326,10 +328,10 @@ class _RenderInkFeatures extends RenderProxyBox implements MaterialInkController
...
@@ -326,10 +328,10 @@ class _RenderInkFeatures extends RenderProxyBox implements MaterialInkController
radius
=
_getSplashTargetSize
(
size
,
position
);
radius
=
_getSplashTargetSize
(
size
,
position
);
}
else
{
}
else
{
assert
(
rectCallback
==
null
);
assert
(
rectCallback
==
null
);
radius
=
kDefaultSplash
Radius
;
radius
=
InkSplash
.
default
Radius
;
}
}
_InkSplash
splash
=
new
_InkSplash
(
_InkSplash
splash
=
new
_InkSplash
(
render
er:
this
,
controll
er:
this
,
referenceBox:
referenceBox
,
referenceBox:
referenceBox
,
position:
position
,
position:
position
,
color:
color
,
color:
color
,
...
@@ -359,7 +361,7 @@ class _RenderInkFeatures extends RenderProxyBox implements MaterialInkController
...
@@ -359,7 +361,7 @@ class _RenderInkFeatures extends RenderProxyBox implements MaterialInkController
VoidCallback
onRemoved
VoidCallback
onRemoved
})
{
})
{
_InkHighlight
highlight
=
new
_InkHighlight
(
_InkHighlight
highlight
=
new
_InkHighlight
(
render
er:
this
,
controll
er:
this
,
referenceBox:
referenceBox
,
referenceBox:
referenceBox
,
color:
color
,
color:
color
,
shape:
shape
,
shape:
shape
,
...
@@ -373,7 +375,7 @@ class _RenderInkFeatures extends RenderProxyBox implements MaterialInkController
...
@@ -373,7 +375,7 @@ class _RenderInkFeatures extends RenderProxyBox implements MaterialInkController
@override
@override
void
addInkFeature
(
InkFeature
feature
)
{
void
addInkFeature
(
InkFeature
feature
)
{
assert
(!
feature
.
_debugDisposed
);
assert
(!
feature
.
_debugDisposed
);
assert
(
feature
.
render
er
==
this
);
assert
(
feature
.
_controll
er
==
this
);
assert
(!
_inkFeatures
.
contains
(
feature
));
assert
(!
_inkFeatures
.
contains
(
feature
));
_inkFeatures
.
add
(
feature
);
_inkFeatures
.
add
(
feature
);
markNeedsPaint
();
markNeedsPaint
();
...
@@ -418,18 +420,18 @@ class _InkFeatures extends SingleChildRenderObjectWidget {
...
@@ -418,18 +420,18 @@ class _InkFeatures extends SingleChildRenderObjectWidget {
/// A visual reaction on a piece of [Material].
/// A visual reaction on a piece of [Material].
///
///
/// Typically used with [MaterialInkController].
/// To add an ink feature to a piece of [Material], obtain the
/// [MaterialInkController] via [Material.of] and call
/// [MaterialInkController.addInkFeature].
abstract
class
InkFeature
{
abstract
class
InkFeature
{
/// To add an ink feature to a piece of Material, obtain the
/// Initializes fields for subclasses.
/// [MaterialInkController] via [Material.of] and call
/// [MaterialInkController.addInkFeature].
InkFeature
({
InkFeature
({
this
.
render
er
,
MaterialInkController
controll
er
,
this
.
referenceBox
,
this
.
referenceBox
,
this
.
onRemoved
this
.
onRemoved
});
})
:
_controller
=
controller
;
final
_RenderInkFeatures
render
er
;
_RenderInkFeatures
_controll
er
;
/// The render box whose visual position defines the frame of reference for this ink feature.
/// The render box whose visual position defines the frame of reference for this ink feature.
final
RenderBox
referenceBox
;
final
RenderBox
referenceBox
;
...
@@ -443,7 +445,7 @@ abstract class InkFeature {
...
@@ -443,7 +445,7 @@ abstract class InkFeature {
void
dispose
()
{
void
dispose
()
{
assert
(!
_debugDisposed
);
assert
(!
_debugDisposed
);
assert
(()
{
_debugDisposed
=
true
;
return
true
;
});
assert
(()
{
_debugDisposed
=
true
;
return
true
;
});
render
er
.
_removeFeature
(
this
);
_controll
er
.
_removeFeature
(
this
);
if
(
onRemoved
!=
null
)
if
(
onRemoved
!=
null
)
onRemoved
();
onRemoved
();
}
}
...
@@ -454,7 +456,7 @@ abstract class InkFeature {
...
@@ -454,7 +456,7 @@ abstract class InkFeature {
// find the chain of renderers from us to the feature's referenceBox
// find the chain of renderers from us to the feature's referenceBox
List
<
RenderBox
>
descendants
=
<
RenderBox
>[
referenceBox
];
List
<
RenderBox
>
descendants
=
<
RenderBox
>[
referenceBox
];
RenderBox
node
=
referenceBox
;
RenderBox
node
=
referenceBox
;
while
(
node
!=
render
er
)
{
while
(
node
!=
_controll
er
)
{
node
=
node
.
parent
;
node
=
node
.
parent
;
assert
(
node
!=
null
);
assert
(
node
!=
null
);
descendants
.
add
(
node
);
descendants
.
add
(
node
);
...
@@ -479,7 +481,7 @@ abstract class InkFeature {
...
@@ -479,7 +481,7 @@ abstract class InkFeature {
class
_InkSplash
extends
InkFeature
implements
InkSplash
{
class
_InkSplash
extends
InkFeature
implements
InkSplash
{
_InkSplash
({
_InkSplash
({
_RenderInkFeatures
render
er
,
_RenderInkFeatures
controll
er
,
RenderBox
referenceBox
,
RenderBox
referenceBox
,
this
.
position
,
this
.
position
,
this
.
color
,
this
.
color
,
...
@@ -487,9 +489,9 @@ class _InkSplash extends InkFeature implements InkSplash {
...
@@ -487,9 +489,9 @@ class _InkSplash extends InkFeature implements InkSplash {
this
.
clipCallback
,
this
.
clipCallback
,
this
.
repositionToReferenceBox
,
this
.
repositionToReferenceBox
,
VoidCallback
onRemoved
VoidCallback
onRemoved
})
:
super
(
renderer:
render
er
,
referenceBox:
referenceBox
,
onRemoved:
onRemoved
)
{
})
:
super
(
controller:
controll
er
,
referenceBox:
referenceBox
,
onRemoved:
onRemoved
)
{
_radiusController
=
new
AnimationController
(
duration:
_kUnconfirmedSplashDuration
)
_radiusController
=
new
AnimationController
(
duration:
_kUnconfirmedSplashDuration
)
..
addListener
(
render
er
.
markNeedsPaint
)
..
addListener
(
controll
er
.
markNeedsPaint
)
..
forward
();
..
forward
();
_radius
=
new
Tween
<
double
>(
_radius
=
new
Tween
<
double
>(
begin:
_kSplashInitialSize
,
begin:
_kSplashInitialSize
,
...
@@ -497,7 +499,7 @@ class _InkSplash extends InkFeature implements InkSplash {
...
@@ -497,7 +499,7 @@ class _InkSplash extends InkFeature implements InkSplash {
).
animate
(
_radiusController
);
).
animate
(
_radiusController
);
_alphaController
=
new
AnimationController
(
duration:
_kHighlightFadeDuration
)
_alphaController
=
new
AnimationController
(
duration:
_kHighlightFadeDuration
)
..
addListener
(
render
er
.
markNeedsPaint
)
..
addListener
(
controll
er
.
markNeedsPaint
)
..
addStatusListener
(
_handleAlphaStatusChanged
);
..
addStatusListener
(
_handleAlphaStatusChanged
);
_alpha
=
new
IntTween
(
_alpha
=
new
IntTween
(
begin:
color
.
alpha
,
begin:
color
.
alpha
,
...
@@ -571,16 +573,16 @@ class _InkSplash extends InkFeature implements InkSplash {
...
@@ -571,16 +573,16 @@ class _InkSplash extends InkFeature implements InkSplash {
class
_InkHighlight
extends
InkFeature
implements
InkHighlight
{
class
_InkHighlight
extends
InkFeature
implements
InkHighlight
{
_InkHighlight
({
_InkHighlight
({
_RenderInkFeatures
render
er
,
_RenderInkFeatures
controll
er
,
RenderBox
referenceBox
,
RenderBox
referenceBox
,
this
.
rectCallback
,
this
.
rectCallback
,
Color
color
,
Color
color
,
this
.
shape
,
this
.
shape
,
VoidCallback
onRemoved
VoidCallback
onRemoved
})
:
_color
=
color
,
})
:
_color
=
color
,
super
(
renderer:
render
er
,
referenceBox:
referenceBox
,
onRemoved:
onRemoved
)
{
super
(
controller:
controll
er
,
referenceBox:
referenceBox
,
onRemoved:
onRemoved
)
{
_alphaController
=
new
AnimationController
(
duration:
_kHighlightFadeDuration
)
_alphaController
=
new
AnimationController
(
duration:
_kHighlightFadeDuration
)
..
addListener
(
render
er
.
markNeedsPaint
)
..
addListener
(
controll
er
.
markNeedsPaint
)
..
addStatusListener
(
_handleAlphaStatusChanged
)
..
addStatusListener
(
_handleAlphaStatusChanged
)
..
forward
();
..
forward
();
_alpha
=
new
IntTween
(
_alpha
=
new
IntTween
(
...
@@ -600,7 +602,7 @@ class _InkHighlight extends InkFeature implements InkHighlight {
...
@@ -600,7 +602,7 @@ class _InkHighlight extends InkFeature implements InkHighlight {
if
(
value
==
_color
)
if
(
value
==
_color
)
return
;
return
;
_color
=
value
;
_color
=
value
;
render
er
.
markNeedsPaint
();
_controll
er
.
markNeedsPaint
();
}
}
final
BoxShape
shape
;
final
BoxShape
shape
;
...
@@ -639,7 +641,7 @@ class _InkHighlight extends InkFeature implements InkHighlight {
...
@@ -639,7 +641,7 @@ class _InkHighlight extends InkFeature implements InkHighlight {
if
(
shape
==
BoxShape
.
rectangle
)
if
(
shape
==
BoxShape
.
rectangle
)
canvas
.
drawRect
(
rect
,
paint
);
canvas
.
drawRect
(
rect
,
paint
);
else
else
canvas
.
drawCircle
(
rect
.
center
,
kDefaultSplash
Radius
,
paint
);
canvas
.
drawCircle
(
rect
.
center
,
InkSplash
.
default
Radius
,
paint
);
}
}
@override
@override
...
...
packages/flutter/lib/src/widgets/framework.dart
View file @
51960b44
...
@@ -1159,7 +1159,7 @@ abstract class SingleChildRenderObjectWidget extends RenderObjectWidget {
...
@@ -1159,7 +1159,7 @@ abstract class SingleChildRenderObjectWidget extends RenderObjectWidget {
/// storage for that child list, it doesn't actually provide the updating
/// storage for that child list, it doesn't actually provide the updating
/// logic.)
/// logic.)
abstract
class
MultiChildRenderObjectWidget
extends
RenderObjectWidget
{
abstract
class
MultiChildRenderObjectWidget
extends
RenderObjectWidget
{
/// Initializes
this object's fields for its
subclasses.
/// Initializes
fields for
subclasses.
///
///
/// The [children] argument must not be null and must not contain any null
/// The [children] argument must not be null and must not contain any null
/// objects.
/// objects.
...
...
packages/flutter/test/material/icon_button_test.dart
View file @
51960b44
...
@@ -20,8 +20,8 @@ void main() {
...
@@ -20,8 +20,8 @@ void main() {
);
);
RenderBox
box
=
tester
.
renderObject
(
find
.
byType
(
IconButton
));
RenderBox
box
=
tester
.
renderObject
(
find
.
byType
(
IconButton
));
expect
(
box
.
size
.
width
,
equals
(
kDefaultSplash
Radius
*
2.0
));
expect
(
box
.
size
.
width
,
equals
(
InkSplash
.
default
Radius
*
2.0
));
expect
(
box
.
size
.
height
,
equals
(
kDefaultSplash
Radius
*
2.0
));
expect
(
box
.
size
.
height
,
equals
(
InkSplash
.
default
Radius
*
2.0
));
});
});
testWidgets
(
'IconButton AppBar size'
,
(
WidgetTester
tester
)
async
{
testWidgets
(
'IconButton AppBar size'
,
(
WidgetTester
tester
)
async
{
...
...
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