Home
last modified time | relevance | path

Searched refs:minRadius (Results 1 – 4 of 4) sorted by relevance

/third_party/flutter/flutter/packages/flutter/lib/src/material/
Dcircle_avatar.dart62 this.minRadius,
64 }) : assert(radius == null || (minRadius == null && maxRadius == null)),
98 /// If [radius] is specified, then neither [minRadius] nor [maxRadius] may be
99 /// specified. Specifying [radius] is equivalent to specifying a [minRadius]
102 /// If neither [minRadius] nor [maxRadius] are specified, defaults to 20
107 /// [radius] to a [minRadius]/[maxRadius] pair or vice versa).
113 /// If [minRadius] is specified, then [radius] must not also be specified.
118 /// itself changing are not. For example, changing the [minRadius] from 10 to
121 /// However, if the [minRadius] is 40 and the [CircleAvatar] has a parent
124 final double minRadius;
[all …]
/third_party/skia/src/core/
DSkScaleToSides.h30 float* minRadius = a; in AdjustRadii() local
34 if (*minRadius > *maxRadius) { in AdjustRadii()
36 swap(minRadius, maxRadius); in AdjustRadii()
43 float newMinRadius = *minRadius; in AdjustRadii()
/third_party/flutter/skia/src/core/
DSkScaleToSides.h30 float* minRadius = a; in AdjustRadii() local
34 if (*minRadius > *maxRadius) { in AdjustRadii()
36 swap(minRadius, maxRadius); in AdjustRadii()
44 float newMinRadius = *minRadius; in AdjustRadii()
/third_party/flutter/flutter/packages/flutter/test/material/
Dcircle_avatar_test.dart191 testWidgets('CircleAvatar respects minRadius', (WidgetTester tester) async {
198 minRadius: 50.0,
237 …testWidgets('CircleAvatar respects setting both minRadius and maxRadius', (WidgetTester tester) as…
244 minRadius: 50.0,