circular_profile_avatar 0.0.2 copy "circular_profile_avatar: ^0.0.2" to clipboard
circular_profile_avatar: ^0.0.2 copied to clipboard

outdated

CircularProfileAvatar is a Flutter package which allows developers to implement circular profile avatar with border, overlay, initialsText and many other awesome features, which simplifies developers [...]

circular_profile_avatar #

A Flutter package which allows developers to implement circular profile image/avatar with border, overlay, initialsText and many other awesome features, which simplifies developers job.

Usage #

    CircularProfileAvatar(
          height: 200, // set height , default 50.0
          width: 200,  // set width , default 50.0
          backgroundColor: Colors.green, // set background color, default Colors.white
          borderWidth: 10,  // set border of profile picture, default value is 0.0
          initialsText: Text(
            "AD",
            style: TextStyle(fontSize: 40, color: Colors.white),
          ),  // sets initials text of the user name , set your own style, default value is Text('')
          borderColor: Colors.brown, // sets border colour, default is Colors.white
          elevation: 5.0, // sets elevation (shadow of the profile picture), default value is 0.0
          foregroundColor: Colors.brown.withOpacity(0.5), sets foreground colour of the profile picture, it works if showInitialTextAbovePicture = true , default value is Colors.transparent
          onTap: () {
            print('adil');
          }, // sets on tap 
          showInitialTextAbovePicture: true, // setting it true will show initials text above profile picture, default value is false  
          imagePath:
              'https://avatars0.githubusercontent.com/u/8264639?s=460&v=4'), //sets image path, it should be a URL string. default value is empty string, if path is empty it will display only initials
    )

Getting Started #

This project is a starting point for a Dart package, a library module containing code that can be shared easily across multiple Flutter or Dart projects.

For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

128
likes
0
pub points
95%
popularity

Publisher

unverified uploader

CircularProfileAvatar is a Flutter package which allows developers to implement circular profile avatar with border, overlay, initialsText and many other awesome features, which simplifies developers job. It is an alternative to Flutter's built in CircleAvatar Widget.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on circular_profile_avatar