Material UI Tabs scrollable don't have option to configure that how many tabs will scroll at arrow(left/right) click - material-ui

I am using material UI v4 tabs with scrollable feature. but when I click on the arrow it scroll all visible tabs .
I want only one tab scroll at once.

Related

Is there a way to unselect all navigation items in the m3 NavigationBar in Flutter?

In Flutter with a Material 3 (m3) app, I am using a NavigationBar as bottomNavigationBar of a Scaffold. How can I disable the active indicator for all destinations?
My use case is my app has pages which do not correspond to the bottom destinations.
In such a case, I want to still show all the tabs (being inactive) in the bottom navigation bar.
I know that for a m2 material app, there is a workaround.
So far, I have not been able to make it work on m3.

Beautiful and responsive "dropdown menu" / "pop-up" flutter

Please see the photos attached for the feature, or simply head to https://www.chrislorenzomusic.com and resize the window until you see the dropdown menu in top right corner appears and click on the menu to see the effect.
I'm not sure what this effect or feature is called, but was wondering what it's called and if it was possible to make something similar in flutter?
Before resizing the window
After resizing window the menu at top right corner appears
When clicking on the menu
When an app or widget behaves differently depending on the screen size or orientation it is considered responsive or has a responsive layout.
https://docs.flutter.dev/development/ui/layout/adaptive-responsive
The Menu itself can be created using a Scaffold with an AppBar and a Drawer. You can configure the AppBar to have the menu icon or the links depending on the size using LayoutBuilder and MediaQuery.of.
AppBar
https://material.io/components/app-bars-top
Drawer
https://material.io/components/navigation-drawer

Disable PageView scrolling in Card widget

Imagine, that you have two pages - pages A and B.
Of course, you can switch between pages by clicking on the tab bar or swipe (left to right or right to left).
On page A, there are multiple Card widgets, one of them contains charts.TimeSeriesChart.
Chart contains behaviour: charts.SlidingViewport(), charts.PanAndZoomBehavior(), nevertheless it doesn't work.
When I put physics:NeverScrollableScrollPhysics(), into PageView, charts getting scrollable feature.
Question:
I would like to allow swipe between tabs, but how to disable swipe between tabs only in this Card widget (with chart), and make sliding working in Chart?
I'm using this package: https://pub.dev/packages/charts_flutter

Flutter Not able to achieve PageView like Swipeable Tabs inside Parent ListView

This is a Flutter Specific Query.
I Want to achieve the Layout Referenced in the Image above. Two Tabs
Below a Container.
The Tabs can be switched using Swipe Animation like that in a
Page View.
The Tabs Contain Dynamically Generated Widgets from Provider.
The Entire Page along with the Fixed Container must be
Scroll-able.
When Switching between the Tabs the fixed container should stay
in place and only tab Content(Column of Widgets) should swipe
left and right.
What I've Tried :
Using a Parent List View and Nesting the Fixed Container Child
and Using Tab Bar to switch the Widget using Animated Switcher and
Slide Animation. Here the Problem is i cannot swipe left and right
and create the Page View like Effect. I also tried Nesting Page-View
inside List-View but since the Page-View does not have a fixed height
( because the tab contents are dynamically generated ).
A few many more concepts i tried to tackle but the issue every time was
that the tab contents are not having a fixed height.
I really want to achieve this Layout and i want to know if there's any way.

How to expand appbar to show text inside app bar on click of action icon ion flutter?

I am building a app activity which has an app bar which has an icon in the center of the appbar and some text. I want to be able to show the text below t the icon with some transition inside the appbar on click of the icon mentioned before and make it disappear it is already showing.
I tried using sliver but I need the transition to happen with click event not scroll up and down event.