Circle Avatar Asset Image Flutter Code Example


Example 1: circle avatar from image asset flutter

CircleAvatar(     radius: 16.0,     child: ClipRRect(         child: Image.asset('profile-generic.png'),         borderRadius: BorderRadius.circular(50.0),     ), ),

Example 2: how to make an image contained in circle avatar in flutter

CircleAvatar(                 radius: 30.0,                 backgroundImage:                     NetworkImage("${snapshot.data.hitsList[index].previewUrl}"),                 backgroundColor: Colors.transparent,               )

Comments

Popular posts from this blog

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Can Feynman Diagrams Be Used To Represent Any Perturbation Theory?