I just want to make the seekbar as shown in the image. How can I achieve this?
I too was looking for this, to no avail. So I made a new widget, feel free to use it: https://code.google.com/p/range-seek-bar/
This will work for sure! just go to this address and copy the code and make the class.
Related
I want to code below design in my flutter app.But i don't know how to make middle icon overflow the container?
Thanks in Advance for help 😀😀
You might want to try a package if your Custom Clipper is struggling
Check out this package, there lot feature you can build for custom bottom bar in easy way.
https://pub.dev/packages/convex_bottom_bar
You can use a CustomClipper to create any shape you want. Clippers are what shapes such as RoundedRectangleBorder use, for a custom shape you'll have to create a custom clipper. There's lot's of articles that'll explain how they work in detail.
There's also some packages that do something similar. While I don't know one that does exactly what you're looking for, you might get a head start looking at their code.
I need to recreate something exactly like this. A bar with a slider and with various colors, exactly the same. I was looking for a bit 'but I can not find a way to do it or anything like that. Can anyone give me a track to work on? Thank you!
What you're looking for is
Android seekbar
And then to style it you would probably end up doing like this so answer
https://stackoverflow.com/a/27035469/2880747
or this one
Custom seekbar (thumb size, color and background)
I personally used the latter, and it was working great :)
is it possible to replace the Icon of the Pull-To-Reload, the circle-arrow, with something else?
I'd like to have something like a trash-can instead.
Thanks,
Georg
If you are using the SwipeRefreshLayout, it seems there is no way to change the icon or animation for it yet. You can change the colors for the animation of spinning lines with the setColorSchemeColors method.
Some external pull to refresh libraries do let you do it, like Ultra Pull to Refresh by liaohuqiu. It seems to allow a lot of customisation of the effect.
I'm looking to implement a SlidingTab ie: lock slider or slide-to-answer type thing in my app. I figured it'd a common thing so the source or widget would be available for use but I can't find it anywhere.
Would I have to build a custom one myself?
If you want the same look and feel of the SlidingTab, yes, you have to implement a custom one yourself! Look here for the source code and here for image resources.
If you need something similar you can use SlidingDrawer or customize a SeekBar.
Let me know what you choose! ;)
Could anyone tell me how it's done to make a scroll bar like this? Is it a widget or what's needed to make it?
This is an override of the existing DatePickerWidget available in the original SDK. You can do your own "skinning" to make it look like this, or use someone else's code.