Communities for your favorite technologies. Explore all Collectives
Stack Overflow for Teams is now called Stack Internal. Bring the best of human thought and AI automation together at your work.
Bring the best of human thought and AI automation together at your work. Learn more
Find centralized, trusted content and collaborate around the technologies you use most.
Stack Internal
Knowledge at work
Bring the best of human thought and AI automation together at your work.
I have a flutter app and I want to be able to display the check mark icon in a CircleAvatar widget. Is this possible to do with the existing icons and so I don't have to download a check mark icon into my assets?
Yes you can do it by using Icon widget in your circleAvatar
For example
CircleAvatar( child:Icon( Icons.check ), ),
Add a comment
Here is working Example
class MyWidget extends StatelessWidget { @override Widget build(BuildContext context) { return CircleAvatar( child:Icon( Icons.check, color: Colors.pink, size: 24.0, semanticLabel: 'Text to announce in accessibility modes', ) ); } }
Required, but never shown
By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.
Start asking to get answers
Find the answer to your question by asking.
Explore related questions
See similar questions with these tags.