Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CircleAvatar #6

Open
1 of 4 tasks
cdm2012 opened this issue Apr 13, 2022 · 0 comments
Open
1 of 4 tasks

CircleAvatar #6

cdm2012 opened this issue Apr 13, 2022 · 0 comments
Labels
enhancement New feature or request

Comments

@cdm2012
Copy link
Contributor

cdm2012 commented Apr 13, 2022

What category Is your widget request for? (mark with [x] for category)

  • Visual
  • Structural
  • Interactive
  • Platform

List the widget's attributes that can be scaled (size, width, height, radius, etc.)

radius

Paste the Constructor for your widget in the below code block

const CircleAvatar({
    Key? key,
    this.child,
    this.backgroundColor,
    this.backgroundImage,
    this.foregroundImage,
    this.onBackgroundImageError,
    this.onForegroundImageError,
    this.foregroundColor,
    this.radius,
    this.minRadius,
    this.maxRadius,
  }) : assert(radius == null || (minRadius == null && maxRadius == null)),
       assert(backgroundImage != null || onBackgroundImageError == null),
       assert(foregroundImage != null || onForegroundImageError== null),
       super(key: key);
@cdm2012 cdm2012 added the enhancement New feature or request label Apr 13, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant