Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrading Flutter Package. #1

Open
nomantalish opened this issue Oct 22, 2019 · 2 comments
Open

Upgrading Flutter Package. #1

nomantalish opened this issue Oct 22, 2019 · 2 comments

Comments

@nomantalish
Copy link

Hi mate. When I open the project folder in visual studio code it ask for package upgrade. While upgrading package it could not be able to upgrade/find Fluttery_seekbar package. I have tried flutter upgrade and flutter pubget command too but unable to upgrade/install fluttery_seekbar package. Any help would be appreciated. Last your doing amazing work it really inspires me.

Regards
Noman Talish

@devbikash07
Copy link

Fluttery seekbar plugin isnot in pub.dev... May be it's owner removed it..

@devbikash07
Copy link

devbikash07 commented Jan 17, 2020

You can built same thing using sleek circular slider

https://pub.dev/packages/sleek_circular_slider#-readme-tab-

Widget _buildRadialSeekBar() {
return SleekCircularSlider(
appearance: CircularSliderAppearance(
customColors: CustomSliderColors(
trackColor: Colors.red.withOpacity(0.5),
progressBarColor: Color(0xfffe1483),
dotColor: Color(0xfffe1483),
hideShadow: true,
),
customWidths: CustomSliderWidths(
trackWidth: 2.0, progressBarWidth: 5.0, handlerSize: 10.0),
startAngle: 270.0,
angleRange: 360.0,
infoProperties: InfoProperties(
mainLabelStyle: TextStyle(
color: Colors.transparent,
)),
),
min: 0,
max: 1000,
initialValue: 100,
onChange: (double value) {
print(value);
});
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants