Swipe and change list items like tab view - flutter

I'll have an activity list for each month and I wanna show them like this.
And also want to have the ability to change the month via a swipe. Does flutter have any package for that?

Related

Flutter make a tab bar that picks the first element when user scrolls ( like in Airbnb home page)

As you can see in the gif here, the tab selects the appropriate item in the seen whenever the user scrolls, unlike the regular tab bar which require click action to change the selected item. Need help pls
[1]: https://i.stack.imgur.com/3cjhT.gif
This is a custom widget with animation controller , you must have some basic knowledge of animation in flutter .
but if you want to have a look at the code check this .

How can I disable a single view in syncfusion_flutter_datepicker

I am using syncfusion_flutter_datepicker in my flutter application. I only want to restrict month view and allow user to choose between the year, decade and century views. Doing this will restrict all the views except a single view, thats not what I want. How can I achieve this?

Flutter widget choice

Im creating for my girlfriend app for her work that will store her customers with some details and dates when they comes to her.
It is my first application, and also im new to flutter, as far i have one screen where i have button when i pressed it, shows bottomsheet with form to add customer and additional info in to listviews Card that build in body on this screen.
Soo far i have that correct.
My problem is i want to add something like this...
when i click on that added card i want it to take to another screen or unwind/ show textfield for that specific card when she could add dates for that client.
Any suggestions for me what to change or what widget/method to use?
You should implement a navigation so you can bring the user to a new page and pass an argument when you want to load the data. Best example is with the todo list : https://flutter.dev/docs/cookbook/navigation/passing-data

Navigate inside a popover

I’d like to know how to navigate in the same popover with Ionic 4 (beta 15).
The example is filtering options.
I click on a funnel and have a list of items displayed in a popover : the filtering categories(year, color etc…)
Each category has a sublist associated.
I’d like to be able to click on a filtering category, and navigate forward to a new view containing the associated options, but staying inside the popover.
When using NavController.navigateForward, the whole current view is impacted, not the popover.
What would you do ?
PS: it is what is currently done in Plex Media server for filtering movie
Filtering workflow
Thanks.

Different menu items for each row on a table

I have a table on a WKInterfaceController. I'd like to have a set of menu items (WKInterfaceMenu) when the user force-touches on some of the rows, and a different set of items for the other rows. Also, I want to make it so that when the user force-touches on a row and then selects a menu item, I can trigger an action that is specific to the row and menu item selected by the user. Is this possible?
Force Touch menus and other elements of watchOS are currently completely separated, so there isn't a possibility to realize such a thing. Also, Force Touch is not able to locate the position of the touch yet, it only says that the screen was force touched.
Take a cup of coffee, wait one or two years and then you will be able to do it for sure.