A profile card by ModularUI with customizable name, image, designation, and social icons.
name: String - Name of the person.
name
nameStyle: TextStyle - Text style for the name, default: TextStyle(fontSize: 18, color: Colors.black, fontWeight: FontWeight.bold).
nameStyle
TextStyle(fontSize: 18, color: Colors.black, fontWeight: FontWeight.bold)
image: Image - Profile image.
image
designation: String - Designation of the person.
designation
designationStyle: TextStyle - Text style for the designation, default: TextStyle(fontSize: 16, color: Colors.black).
designationStyle
TextStyle(fontSize: 16, color: Colors.black)
borderRadius: double - Border radius of the card, default: 8.
borderRadius
8
socialIcons: List - List of social icons to display in the card footer.
socialIcons
bgColor: Color - Background color of the card, default: Colors.white.
bgColor
Colors.white
maxWidth: double - Maximum width of the card, default: 430. Responsive to screen size.
maxWidth
430
The card provides a visually appealing way to display profile information.
Customize appearance and layout using the provided properties.
Last updated 1 year ago
MUIProfileCard( name: 'Utkarsh Shrivastava', image: Image.network('https://iili.io/JllFe19.jpg', fit: BoxFit.cover), designation: 'Flutter Developer', ),