profile_view 0.0.2
profile_view: ^0.0.2 copied to clipboard
Open Profile Images in instagram like Styles.
profile_view #
ProfileView is a Flutter package to open profile pictures in instagram style.

Getting started #
Just Provide Image to your ProfileView and it'll do all the work.
Usage #
Circle Shape Image [Default]
ProfileView(
image: NetworkImage(
"https://preview.keenthemes.com/metronic-v4/theme/assets/pages/media/profile/profile_user.jpg"
),
),
Rectangle Image with Radius
ProfileView(
height: 100,
width: 100,
circle: false, //set value to false
borderRadius: 10, //Corner circular Radius.
image: NetworkImage(
"https://preview.keenthemes.com/metronic-v4/theme/assets/pages/media/profile/profile_user.jpg"
),
),
Example Usage
See Example Code for more info.
Contributing #
Every pull request is welcome.