user_social_profile 1.0.1
user_social_profile: ^1.0.1 copied to clipboard
This package will display a developer's socal profile information.
This plugin is quite useful for showing a Developer's social media information, particularly useful for ABOUT THE DEVELOPER section in majority of the apps.
Preview #

Installation & usage #
First, import the package
import 'package:user_social_profile/user_social_profile.dart';
Code Snippet
UserSocialProfile(
fullName: "Mustafa Tahir",
icons: [
SocialIcon(
name: Platform.github,
link: "your_github_url",
iconSize: 50,
),
SocialIcon(
name: Platform.linkedin,
link: "your_linkedin_url",
iconSize: 50,
),
],
email: "abc@gmail.com",
),
Optional parameters #
- picture
- phone
In addition, a custom style can also be applied to the same via:
- phoneStyle
- emailStyle
Contributing #
If you'd like to contribute to this project, please follow these guidelines:
- Submit an issue describing the bug or feature request.
- Fork the repository and make changes in a new branch.
- Submit a pull request with your changes.