maxRadius property

double? maxRadius
final

The maximum size of the avatar, expressed as the radius (half the diameter).

If maxRadius is specified, then radius must not also be specified.

Defaults to double.infinity.

Constraint changes are animated, but size changes due to the environment itself changing are not. For example, changing the maxRadius from 10 to 20 when the CircleAvatar is in an unconstrained environment will cause the avatar to animate from a 20 pixel diameter to a 40 pixel diameter. However, if the maxRadius is 40 and the CircleAvatar has a parent SizedBox whose size changes instantaneously from 20 pixels to 40 pixels, the size will snap to 40 pixels instantly.

Implementation

final double? maxRadius;