Profile Widget

Profile Widget package lets you add a beautiful Profile container to your Flutter app.

Installation

  1. Add the latest version of package to your pubspec.yaml (and rundart pub get):
dependencies:
  profile_widget: ^0.0.1
  1. Import the package and use it in your Flutter App.
import 'package:profile_widget/profile_widget.dart';

Example

There are a number of properties that you can modify:

  • height
  • width
  • color
  • background
  • name
  • role
  • image
  • shadow
  • nameFontSize
  • roleFontSize
  • imageRadius
  • padding
  • margin

class ProfileScreen extends StatelessWidget {  
  const ProfileScreen({Key? key}) : super(key: key);  
  
  @override  
  Widget build(BuildContext context) {  
    return ProfileWidget(
        image: 'assets/Icons/developer.jpeg',
        name: 'Paresh Chaudhary',
        role: 'Mern stack and flutter developer',
        githubLink: 'https://github.com/Paresh2578',
        instagramLink: 'https://www.linkedin.com/in/paresh-chaudhary-90b68224b',
        linkedinLink:'https://www.instagram.com/__paresh__2?igsh=OXZod2JkYXRhbHZ6' ,
        whatsappLink: 'whatsapp://send?phone=9327095244'
      );  
  }  
}

Libraries

profile_widget