0 purchases
profile widget
Profile Widget #
Profile Widget package lets you add a beautiful Profile container to your Flutter app.
Installation #
Add the latest version of package to your pubspec.yaml (and rundart pub get):
dependencies:
profile_widget: ^0.0.1
copied to clipboard
Import the package and use it in your Flutter App.
import 'package:profile_widget/profile_widget.dart';
copied to clipboard
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'
);
}
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.