CircleAvatar Widget and Attributes

CircleAvatar Widget and Attributes

ยท

2 min read

In the realm of Flutter UI development, the CircleAvatar widget takes center stage when it comes to presenting circular images or avatars. This versatile widget not only brings a touch of elegance to your user interface but also provides seamless integration with various attributes for customization. In this blog post, let's dive into the world of the CircleAvatar widget and explore its attributes through real-world examples.

The CircleAvatar widget in Flutter is a sleek and straightforward solution for displaying circular images or icons. Whether you're creating a user profile section or incorporating circular elements in your UI, the CircleAvatar shines as a go-to choice. It effortlessly wraps any content, turning it into a perfect circle.

Key Attributes of CircleAvatar:

Now, let's explore some key attributes that allow you to customize the appearance and behavior of the CircleAvatar widget:

1. radius:

  • The radius property determines the size of the circle. Adjust it according to your design requirements.

2. backgroundColor:

  • Customize the background color of the CircleAvatar using the backgroundColor property.

3. foregroundColor:

  • The foregroundColor property sets the color of the content within the CircleAvatar, such as the text or icon.

4. backgroundImage:

  • If you want to display an image within the CircleAvatar, use the backgroundImage property. It accepts an ImageProvider like AssetImage or NetworkImage.

5. child:

  • Instead of an image, you can provide a child widget to the CircleAvatar using the child property. This is useful for displaying text, icons, or any other widget.

6. minRadius and maxRadius:

  • For more dynamic control over the size, you can use minRadius and maxRadius properties to set minimum and maximum values for the CircleAvatar radius.

Basic Implementation:

Let's start with a simple example to showcase the basic usage of the CircleAvatar widget:

import 'package:flutter/material.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: Text('Flutter CircleAvatar Example'),
        ),
        body: Center(
          child: CircleAvatar(
            radius: 50,
            backgroundImage: AssetImage('assets/profile_image.jpg'),
          ),
        ),
      ),
    );
  }
}

In this example, a CircleAvatar wraps an image, creating a circular profile picture with a specified radius.

Let's integrate these attributes into a comprehensive example:

CircleAvatar(
  radius: 60,
  backgroundColor: Colors.blue,
  foregroundColor: Colors.white,
  backgroundImage: AssetImage('assets/profile_image.jpg'),
  child: Icon(Icons.person),
)

In this enhanced example, we've customized the CircleAvatar with a blue background, white foreground, and added an icon as a child. Feel free to experiment with these attributes to achieve the desired visual outcome in your Flutter applications.

Did you find this article valuable?

Support Vinit Mepani (Flutter Developer) by becoming a sponsor. Any amount is appreciated!

ย