Commit 51960b44 authored by Adam Barth's avatar Adam Barth Committed by GitHub

Complete dartdocs for material/material.dart (#5941)

parent 400585cb
...@@ -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(kDefaultSplashRadius * 2.0) const Size.square(InkSplash.defaultRadius * 2.0)
), ),
child: new Align( child: new Align(
alignment: alignment, alignment: alignment,
......
...@@ -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 = kDefaultSplashRadius; radius = InkSplash.defaultRadius;
} }
_InkSplash splash = new _InkSplash( _InkSplash splash = new _InkSplash(
renderer: this, controller: 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(
renderer: this, controller: 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.renderer == this); assert(feature._controller == 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.renderer, MaterialInkController controller,
this.referenceBox, this.referenceBox,
this.onRemoved this.onRemoved
}); }) : _controller = controller;
final _RenderInkFeatures renderer; _RenderInkFeatures _controller;
/// 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; });
renderer._removeFeature(this); _controller._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 != renderer) { while (node != _controller) {
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 renderer, _RenderInkFeatures controller,
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: renderer, referenceBox: referenceBox, onRemoved: onRemoved) { }) : super(controller: controller, referenceBox: referenceBox, onRemoved: onRemoved) {
_radiusController = new AnimationController(duration: _kUnconfirmedSplashDuration) _radiusController = new AnimationController(duration: _kUnconfirmedSplashDuration)
..addListener(renderer.markNeedsPaint) ..addListener(controller.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(renderer.markNeedsPaint) ..addListener(controller.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 renderer, _RenderInkFeatures controller,
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: renderer, referenceBox: referenceBox, onRemoved: onRemoved) { super(controller: controller, referenceBox: referenceBox, onRemoved: onRemoved) {
_alphaController = new AnimationController(duration: _kHighlightFadeDuration) _alphaController = new AnimationController(duration: _kHighlightFadeDuration)
..addListener(renderer.markNeedsPaint) ..addListener(controller.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;
renderer.markNeedsPaint(); _controller.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, kDefaultSplashRadius, paint); canvas.drawCircle(rect.center, InkSplash.defaultRadius, paint);
} }
@override @override
......
...@@ -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.
......
...@@ -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(kDefaultSplashRadius * 2.0)); expect(box.size.width, equals(InkSplash.defaultRadius * 2.0));
expect(box.size.height, equals(kDefaultSplashRadius * 2.0)); expect(box.size.height, equals(InkSplash.defaultRadius * 2.0));
}); });
testWidgets('IconButton AppBar size', (WidgetTester tester) async { testWidgets('IconButton AppBar size', (WidgetTester tester) async {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment