simple_profile_container 0.0.1 copy "simple_profile_container: ^0.0.1" to clipboard
simple_profile_container: ^0.0.1 copied to clipboard

A simple container to display user profile

Simpe Profile Container #

The simple_profile_container Flutter package provides a versatile and customizable widget for displaying user profiles in your Flutter applications. With clean design and thoughtful defaults, it simplifies the process of presenting user information, including the user's name, email, and profile image. The package offers flexibility in styling, allowing developers to customize background colors, text colors, and more.

Features #

  1. Display user profile information with ease.
  2. Customizable background colors and text colors.
  3. Supports different profile image sources.
  4. Thoughtful defaults for a clean and polished look.
  5. Easily integrate user profiles into your Flutter applications.

Getting started #

  1. Add the following line to your pubspec.yaml file:
dependencies:
  simple_profile_container: ^0.0.1
  1. Run the following command to fetch the package:
flutter pub get
  1. Import the package in your Dart code:
import 'package:simple_profile_container/simple_profile_container.dart';

Example #

There are numbers of properties that you can modify:

  • backgroundColor,
  • width,
  • emailTextColor,
  • nameTextColor,
  • nameTextSize,
  • emailTextSize,
SimpleProfileContainer(
  name: "John Doe",
  email: "john@example.com",
  profileImage: AssetImage("assets/profile_image.jpg"),
  backgroundColor: Colors.blue,
  width: 300,
  nameTextColor: Colors.white,
  emailTextColor: Colors.white,
)

Next Goals #

  • ❌ Add more profile containers to the package.
2
likes
120
points
28
downloads

Publisher

unverified uploader

Weekly Downloads

A simple container to display user profile

Homepage

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on simple_profile_container