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

This is widget show your detalis like name , role and social media links.

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'
      );  
  }  
}
4
likes
130
points
42
downloads

Publisher

unverified uploader

Weekly Downloads

This is widget show your detalis like name , role and social media links.

Repository (GitHub)
View/report issues

Documentation

API reference

License

GPL-3.0 (license)

Dependencies

flutter, google_fonts, url_launcher

More

Packages that depend on profile_widget