Questions tagged [appbar]

An application desktop toolbar (also called an appbar) is a window that is similar to the Windows taskbar.

It is anchored to an edge of the screen, and it typically contains buttons that give the user quick access to other applications and windows.

An app bar consists of a toolbar and potentially other widgets

source: http://msdn.microsoft.com/en-us/library/windows/desktop/cc144177(v=vs.85).aspx

634 questions
19
votes
2 answers

Flutter appBar Backbutton doesn't appear

I've successfully navigated to a class in a new file, but now I'm not getting a backbutton on my appBar. Here is my navigation from main.dart... new RaisedButton( onPressed: () { Navigator.pushNamed(context,…
Charles Jr
  • 8,333
  • 15
  • 53
  • 74
18
votes
6 answers

Change AppBar title depending on page with BottomNavigationBar

I'm trying to change the AppBar title depending on which page the user is on - the pages are controlled by a BottomNavigationBar which loads the different classes(pages) The only way i've managed to change this is by including a appbar for each…
Kylie Walker
  • 215
  • 1
  • 3
  • 10
18
votes
3 answers

How do I display an image on left of Material-UI AppBar, but retain the "hamburger" menu?

I'd like to display an image on the left of a Material-UI AppBar, but keep the "hamburger" menu and have the image just to the right of that. Is it possible? I can add an image to the left using
dommer
  • 19,610
  • 14
  • 75
  • 137
17
votes
2 answers

Changing SliverAppBar title color in Flutter application

I'm using a SliverAppBar including a background Image and Title. Title text is white and I need to change the color to black on the AppBar is 'reduced' (since tabbar is white as well). How to do that ? NestedScrollView( …
fvisticot
  • 7,936
  • 14
  • 49
  • 79
17
votes
1 answer

TabBar on bottom of app with Column

I am trying to put the TabBar on the bottom of the app. It worked so far, yet I can't get the pages to work (TabBarView). It just looks black and unresponsive. The TabBar is unresponsive too. Have I taken the wrong approach? Currently, it looks like…
TheUniqueProgrammer
  • 605
  • 2
  • 6
  • 13
16
votes
4 answers

How to change the app bar title in flutter

**change the appbar title dynamically** Getting appbar title from the database and then I have to set to appbar. I am new to flutter tried setState as well. I have tried setState() as but still not working. how can i change the appbar text based on…
AKASH WANGALWAR
  • 1,326
  • 1
  • 14
  • 21
15
votes
2 answers

Flutter: subtract status bar height from AppBar

I have moved my AppBar downwards but now it's height is too big. I want to know how I can subtract the status bar's height from my AppBar's height. Here is what it looks like at the moment: Here is how you can set the AppBar's height: Flutter:…
Paul Kruger
  • 2,094
  • 7
  • 22
  • 49
13
votes
2 answers

setDrawerLayout(androidx.drawerlayout.widget.DrawerLayout) is deprecated

I am trying set up Navigation Drawer Layout with App Bar Configuration using the new Android Architecture. The problem am having is that android studio is telling me the way am setting up the drawer layout is deprecated. Here is my xml…
13
votes
2 answers

How to specify Minimized Mode for BottomAppBar WP8.1

Who to set Mode="Minimized" in WP8.1 WINRT for a BottomAppBar?
Ouadie
  • 13,005
  • 4
  • 52
  • 62
12
votes
2 answers

How to add Back Button without using AppBar in Flutter?

I wanted to add a back button on my appBar and wanted to make the appBar transparent so that it shows only the back button.
Simran Aswani
  • 1,236
  • 3
  • 19
  • 42
12
votes
7 answers

AppBar overlaps with other elements

I am starting to use React/Material-UI, and also new to CSS etc... I have a simple page layout with an APPBar. Unfortunately this AppBar overlaps the elements which are meant to go below it. I have found this answer: AppBar Material UI questions But…
Will59
  • 1,430
  • 1
  • 16
  • 37
12
votes
3 answers

Is default navbar on Material UI exist like Bootstrap does?

I found it hard to create navbar with menus on Material UI. I've read it's AppBar documentation. But, it seems they doesn't provide that feature. 1) Material UI AppBar 2) React Bootstrap Navbar How to create navbar menu on Material UI like React…
Rido
  • 717
  • 4
  • 10
  • 23
11
votes
5 answers

Is there a way to achieve a dynamic height in bottom widget of SliverAppBar

The SliverAppBar has an attribute bottom which has to have preferredSize. Right now I have it returning constant value: ... new SliverAppBar( expandedHeight: _kFlexibleSpaceMaxHeight, flexibleSpace: new FlexibleSpaceBar(.....) ... …
Jerzy Kiler
  • 2,795
  • 4
  • 18
  • 12
11
votes
1 answer

AppCompat Toolbar not Showing

After declaring .NoActionBar in the theme, as well as putting the toolbar in the layout, my toolbar does not show. What I end up getting is exactly what you'd expect when declaring no action bar -- no action bar. Here is the…
Siddharth Jaidka
  • 111
  • 1
  • 1
  • 4
11
votes
2 answers

Change AppBarLayout height programmatically in Android

I'm trying to implement Flexible Space with image pattern, using this tutorial. Everything works fine. Notice the height definition of the AppBarLayout which is 192dp. I'd like to make the height 1/3 of the screen instead, to match this google…
Jjang
  • 11,250
  • 11
  • 51
  • 87
1
2
3
42 43