Default Scroll Bar For Flutter Web - flutter

can someone tell me how to able the default scroll bar for flutter web,
i can only create the scroll bar by the scrolable widgets we have , but i want to use the scroll bar of the browser instead , it is missing and i dont know how to create it , and does flutter support it in the first place? thanks in advace .
here is an example of what i want .

Related

Is there any way I can implement pull down appbar in flutter?

Can anyone suggest to me how can I build a pull-down appbar. I searched the whole net but can't find any idea regarding this. It would be great if anyone could guide or suggest to me to build the appbar.
Edit:-
Many developers are saying to use SliverAppBar. SliverAppBar basically collapses the app bar when we scroll up the listview or any other widget, whereas I want an app bar that pulls down i.e when we tap the app bar and scroll it down only the app bar grows on top of the body. So basically when we navigate to the home screen the app bar should look like the second referred image i.e it must be closed. But we can pull down that appbar to view the hidden contents of the appbar. I am attaching an image for reference.
I Think what you mean what pull down App is an Appbar that expands try.
the silver Appbar
https://youtu.be/mSc7qFzxHDw

Customise Bottom Tab Bar in Flutter

I'm trying to make a tab bar like this for my flutter project.
Is there a way to do this?
I tried using BottomBarInspiredOutside from awesome_bottom_bar library and got this

I want to make a container under app bar which works like a secondary App Bar where I can put my back icon button and title in the center in flutter

I have tried everything. But I can't find a permanent solution How to put the title in the center while my back icon button on the left side. I want to use this secondary app bar on every screen of my app.
Please check the image below for a better understanding.
This is the problem that I am facing
Take a ListView Widget at body of Scaffold and in its children put first widget as a ListTile that comes under AppBar. So that there will be a leading icon and title in center. After that take a Column and add your needed widgets for every page.

Flutter Animated Container as a sidebar

asking for advice on what I need to search for?
I need something like side navigation but when I open the container it can not overlay the header and button navigations. Chek picture example. Thanks.
So far I understand that Drawer will not help..

Is there a way to hide Status Bar as soon as the Drawer opens in Flutter?

I'm trying to hide the status bar as soon as the drawer opens just like the google maps app on iOS.
Also, can I change the height of drawer header? Right now it's taking a third of the drawer itself.
Cheers