Flutter selection page transformer - flutter

I want to make a widget like this, I am a beginner - how can I make this?
There is one additional constraint: the selection bar above can have more than 3 options.

This code will help to you make swiper page design
Flutter dependency : flutter_swiper
https://github.com/lohanidamodar/flutter_ui_challenges/blob/master/lib/src/pages/animations/animation1/animation1.dart

Related

Create Vertical List in Flutter

I want to create this type of listview using flutter.
https://dribbble.com/shots/6872462-Food-ordering-app-Animate
You can find out more by clicking on this link. But I don't know how to create this type of list. I mean, you can see in the GIF that the list is indexed based.
A fixed indexed item container is colored.
How can I achieve it?
Flutter provides you with a widget very similar to the result you want to achieve called NavigationRail.
You will not have the animation by default, but you can maybe search in the source code of this widget how to create a custom widget that will implement animations.

Is there a flutter widget for this type of choice bar?

This is taken from the ESPN website where you can select one of the 3 options within the choice bar and it shows the information related to your choice. Is there any flutter widget for this? Choice chips are the closest one I've found but they are not connected together. Just wondering if there is a widget for this before spend the time to build one myself.
You can try something like this. https://pub.dev/packages/toggle_bar
But, IMHO, your own implementation will be more flexible.
You can use the built-in TabBar widget.
Take a look at this article:
https://flutter.dev/docs/cookbook/design/tabs

Asking about Flutter UI

I have one question regarding Flutter UI. You guys know what this is called in flutter at "Nutrition Fact" part as my picture shown below? The keyword or package that I can search regarding that part. Hope u guys can help me.
Image Reference
It is called Bottom Sheet.
There are so many dart packages but any one of two can be use for your example.
First : solid_bottom_sheet
Second : modal_bottom_sheet
It looks like a rounded container with a row widget. Row widget has 2 children: Text("Nutritional Fact") and IconButton. MainAxisAlignment of row is set to MainAxisAlignment.spaceBetween.IconButton's onpressed parameter might show a BottomModalSheet to display the fact.

Flutter ViewPager and PageTransformer

I want to implement something like this from Android in Flutter. Content will be dynamically created. I don't want to use flutter swiper because it has bugs and it is not maintained anymore. How can I implement this?
Another example is here
Edit: Let me clarify something: I don't want any code or work from you. Just asking the logic for how to do ViewPager and PageTransformer in Flutter. Because I tried PageView, Stack to implement this but I can not establish the logic.

cupertino option tiles ,ios settings page style

I'm wondering which or how can design settings page like that
1-every option has a own value in right if it's has
2-hit under tile option
3- the divider not full width
is it by ListTile !! or there is another widget ?
There are multiple widgets uses in the above design you can not create it with single widget
Widgets You can use
Text,Containers,ListTile,CupertinoButtons and more
Try yourself and Best of luck