How do i create scrolling option like GPay - flutter

I have to create a design like this. when the items are scrolling tabs should change to another how can I do the same design? are there any trusted plugins available in flutter?
I've seen one plugin 'vertical_tab_bar_view: ^0.0.1' but the popularity is only 68% so I am in doubt? can anyone get me a solution or proper explanation for the same? Thanks in advance.

Related

How to make flutter draggable grid

As a freelancer, I got an order to design a schedule page with Flutter. I can create it myself from scratch, but I was wondering if there is already a package that is implemented, that behaves similarly as my case. Even there is no any package but someone encountered this kind of task, I would like to hear some suggestions from you!
Here is the explanation of the design:
Left side has a list of Users
Right side is a time view ( can be weekly and monthly view)
Only shifts that are already added, can be dragged to other time.
If need some more information, please comment! Thanks
I found syncfusion calendar package for now, other than that nothing fits well. FYI, this is a web app.

Flutter tab/stepper bottom?

My designer gave me the following design for a questionnaire screen.
I didn't found anything out of the box from the flutter components.
Maybe I could create something of my own, but before that I would like to validate that this isn't something that exists:
Any help would be appreciated
You can use smooth_page_indicator or page_indicator for the page indicate, and for the Next and Back buttons you can use any kind of flutter button components

Wordpress slider with filters & thumbnails outwith the slider

I am looking to create a slider within wordpress that is a little out of the norm and was wondering if anyone could give me advice on how to go about it.
I'd like a slider for a meet the team page on our website.
I am hoping the slider could work as normal but have filters on the left for departments and thumbnails below and outwith the slider with each employee on there.
I would like these thumbnails to be clickable and for the matching slide to appear when the thumbnail is clicked.
Can anyone suggest a plugin or a method to create this kind of thing?
Thanks in advance for your help.
Well i think you are referring to isotope jquery plugin. It filters down items based on the selected tag. Its actually free but you will have to create modify it for your needs. If you are using bootstrap you can get the idea of implimentation from here.
http://theme.stepofweb.com/Atropos/v1.5/HTML/page-team.html
Here is a paid wordpress plugin that can do that for you.
http://codecanyon.net/item/meet-the-team-wordpress-plugin/full_screen_preview/4983412

Content Slideshow Plugin

Does anyone have any suggestions as to what wordpress plugin I can use to create a similar type of slideshow plugin as the ones that are used on Refinery29? Here is a link to an example...
http://www.refinery29.com/rooftop-bars-nyc/slideshow#slide-1
What I like about this particular slideshow/gallery is that the images don't auto-resize to fit into a fixed gallery box, the slides are numbered, there is a full-screen option.
I also like that each slide is a new URL - better click-through rate I would assume.
This is another example that I like as well...
http://www.wellandgoodnyc.com/2013/06/03/7-stunning-summer-yoga-escapes/
If anyone can provide any suggestions (free or premium plugins), I would be forever grateful!
Thank you!
jquery carousel lite is easy to implement and adapt to your needs;
http://www.gmarwaha.com/jquery/jcarousellite/
for more heavyweight stuff you could use jquery carousel
http://sorgalla.com/projects/jcarousel/

How to implement a image list control with SWT?

Does anybody have any idea on how to easily implement a image list(like the windows explorer with medium icons) control with swt? it seems like that it could be done easily with CListCtrl in c++ on windows, but does not seem to be easy with swt? any hints are appreciated!
Up to me, you need to create your own widget (check e.g. http://www.snip2code.com/Snippet/11489/Custom-SWT-List-Box) and add composite items to your custom list.
If vertical-only scrolling is enough, I suggest you rely on a single column TableViewer. This is what I did in a project where I needed a gallery-like window allowing the user to pick a graphical component based on displayed thumbnails.
You just need to implement the proper TableLabelProvider.getColumnImage and return the desired thumbnail corresponding to your list entry.
That gives a pretty decent list-like rendering.
In addition, TableViewer API is very well documented.