I try to create a flutter application UI with the App bar and Bottom sheet. I want to update the app bar item count according to the bottom sheet values. Is there any way to do this?
I want to do it without refresh the page.
Related
Is it possible to create a Dialog in Flutter that stays on top, even if Navigator.of(context).push() is called?
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
Hi I’m a beginner in flutter and I have an app that have a tab bar view and one of the pages have a bottom notched app bar it have children:-a floating action button and other two material buttons,the floating action button navigates to a page with a form and when the form is filled I want it to navigate to the first material button page and the form has a counter so the form will only stay at the first material button page only until the counter is zero then it will be moved to the second material app button page.And I want this process to loop as long as the user create the form and if there is no created form I want the first material button page to display something like you don’t have anything yet.Please help it would mean a lot
1.I have created a lesson app USING FLUTTER in which I want to implement next,previous,share & home button in each page...How can I do this
2.I need your help
If you have a scaffold, this will have an appbar and you place the actions in the appbar with icon buttons.
A scaffold also has a body which can be a pageview which in turn, can hold your various pages.
Depending on the app, you might get the pageView or a gestureDetector to give you swipe left and right for your previous or next.
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.