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
-1
votes
1 answer

Android hamburgermenu shouldn't have padding on the start left side

I'm having padding to the left off my hamburger menu, how can I remove it? Here is the xml:
Jim Clermonts
  • 1,694
  • 8
  • 39
  • 94
-1
votes
2 answers

AppBar not working and considered as dead code

This is my code, it keeps showing up as "Dead Code." and it wont show anything in my AVD, can anyone help me with this? import 'package:flutter/material.dart'; class SignInScreen extends StatelessWidget { const SignInScreen({Key? key}) :…
Jennieee
  • 15
  • 5
-1
votes
1 answer

Unable to resize widgets inside appbar in flutter

The size of my container is not changing when I am using it inside App bar. I tried wrapping it inside a sizedBox even then it's not working as expected. And not only container , I am unable to resize any of the buttons inside appbar.
-1
votes
1 answer

Add Icon button in App bar of tab bar in flutter

https://i.stack.imgur.com/LPLE4.png I need to add iconbutton appbar flutter
-1
votes
1 answer

How to add drawer without Appbar in flutter at the top left corner | Flutter

How to add drawer at top left corner without appbar, when i tried using positioned widget and Iconbutton and use Drawer as widget function, but it not working. Is there any other method?? class HomePage extends StatefulWidget { @override …
Murali Krishnan
  • 272
  • 5
  • 20
-1
votes
2 answers

Toolbar shadow not showing

My app has a fragment with tablayout and it shows a shadow with elevation:
-1
votes
1 answer

how to align action items & title in action bar/ app bar?

I'm a new android developer and I made lots of documentation till I got my own action bar with actions icon/items. but I want to know two things: How to align the title at the center of action bar (lots of documentation showed it by using gravity…
Ahmed Saad
  • 13
  • 7
-1
votes
1 answer

How to display app bar (menu) xml file

I am trying to find a way to display a menu xml file in my App bar and I got stuck so I am asking for help. This is what I have got so far: main activity xml:
jonasxd360
  • 1,225
  • 4
  • 19
  • 35
-1
votes
1 answer

Why AppBar behaviors differently in windows surface pro 1 and windows surface pro 4?

I have my app bar defined as below: private void MyBottomBar_Closed(object sender, object e) { if…
spspli
  • 3,128
  • 11
  • 48
  • 75
-1
votes
1 answer

Why does there seem to be no "Opened" event for a WinRT XAML BottomAppBar?

I want to respond to the opening of a bottom app bar in my Windows Store App. Elsewhere, I was advised that there is, indeed, and "Opened" event for it, but this: ...results in…
B. Clay Shannon-B. Crow Raven
  • 8,547
  • 144
  • 472
  • 862
-1
votes
1 answer

Windows phone application bar

I have add four icons for my application bar that are yellow . When the theme is set to dark everything is OK but when i set it to light the yellow becomes black any suggestions ?
VaSiLiS .
  • 9
  • 4
-2
votes
2 answers

How to programmatically check if appbar is present in flutter app, or not?

Is there any way to store in a boolean variable true for if appbar is present and false if not? I can't find at all anywhere.
Linisha
  • 21
  • 5
-2
votes
2 answers

Error: Have two Action bar in activity_main.xml (Android Studio)

Error: https://i.stack.imgur.com/uJrJ5.png Code here: https://codepen.io/anon/pen/RxpvdE (Sorry I cant't post code here because of when post error 4 space Ctr+K..???)
O Thạnh Ldt
  • 1,103
  • 10
  • 11
-2
votes
1 answer

Create context menu on menu item click

I am in strange situation and I tried to search everywhere but i didn't find anything useful. May be I am following bad design. But here is my situation: I have AppBar in my app and I have added ActionButton on app bar which we do normally. Now I…
-3
votes
2 answers

How to change Appbar color with onTap in flutter?

I tried changing the background color of Appbar using onTap in ListTile ListTile( title: const Text('Black'), leading: const Icon(Icons.label), onTap: () { setState(() { …
1 2 3
42
43