profile_containers 0.0.3 copy "profile_containers: ^0.0.3" to clipboard
profile_containers: ^0.0.3 copied to clipboard

In this package i give you the containers for your profile view.

Example #

Just add a simple profile view container in which you can put your title, account brief and your profile image

SizedBox( width: double.infinity, height: 100, child: Card( color: Colors.blue, shape: RoundedRectangleBorder( borderRadius: BorderRadius.circular(15.0), ), child: Row( mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ Row( children: [ Padding( padding: const EdgeInsets.only(left: 10.0, right: 10), child: SizedBox( width: 70, height: 70, child: CircleAvatar( radius: 55, child: CircleAvatar( radius: 50, backgroundImage: AssetImage('Your Image Here')),// Your Profile Image placed here )), ), Column( mainAxisAlignment: MainAxisAlignment.center, crossAxisAlignment: CrossAxisAlignment.start, children: [ Text( 'Your Title Here', // Your first Title String placed here style: const TextStyle(color: Colors.white), ), Text( 'Your Description Here', // Your second Description String placed here style: const TextStyle( fontSize: 20, color: Colors.white, fontWeight: FontWeight.bold), ), ], ), ], ), ])));

0
likes
0
pub points
0%
popularity

Publisher

unverified uploader

In this package i give you the containers for your profile view.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on profile_containers