Questions tagged [bottomappbar]

29 questions
0
votes
1 answer

Problem with size and design of BottomAppBar and BottomNavigation

When I use BottomAppBar and BottomNavigation I see extra empty space at the bottom of the page Why am I seeing extra space at the bottom of the page? enter image description here I use AndroidStudio Giraffe and this dependency : implementation…
0
votes
0 answers

floating action button radial menu in BottomAppBar android java

Respectable Gurus, I am trying to add fab button with expandable arc / radial menu in android.material.bottomappbar.BottomAppBar using xml and java class, after a lot of research I did not succeed. I want the bottom bar with menu like screenshot…
Ambreen Khan
  • 169
  • 1
  • 2
  • 12
0
votes
0 answers

How to use BottomAppBar with BottomNavigationView inside in a Single Activity App Architecture?

I want to add a FloatingActionButton in the middle of BottomAppBar with curve below. So i Added tried to design the MainActivity like below. I maintained Single Activity Architecture in this app. Now, I have faced two problems. If I want to set…
0
votes
0 answers

Persistent Navigation Bar only in some pages

Stackoverflowers! I'm using an BottomAppBar inside the bottomNavigationBar section of the Scaffold. The problem is that it doesn't persists while I'm navigating. I used the persistent_bottom_nav_bar plugin, but it doesn't work with my custom…
0
votes
1 answer

Create Intent, but leave BottomAppBar visible

I have a standard Android app with a BottomAppBar, 3 fragments/tabs, a floating action button which opens an Intent. The intent occupies the whole screen and covers the BottomAppBar. Is there a way to make the BottomAppBar visible while the Intent…
ZP007
  • 582
  • 7
  • 12
0
votes
1 answer

Why is showModalBottomSheet covers bottomNavigationBar, while showBottomSheet displayed on top of it position-wise?

I have an application (simplified) that looks like this: working dartpad example: https://dartpad.dev/cc4e524315e104c272cd06aa7037aa10 import 'package:flutter/material.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget…
Sae
  • 79
  • 7
0
votes
1 answer

How to change tab programmatically on BottomAppBar flutter?

I am working on a flutter application where I need to change my tab programmatically, here If I came on the last screen of the stack then I need to redirect to the first tab programmatically instead of closing the app. Please consider the following…
Kishan sharma
  • 701
  • 1
  • 6
  • 20
0
votes
1 answer

Flutter BottomNavigationBar call navigator push for one Navigator item

I have a BottomNavigationBar with 4 BottomNavigaton items and want 3 items to render different contents for the body, which works fine already. I want the first item to open the camera and link to a completely new page. How can I do this? What I…
0
votes
1 answer

Show Page with Specific List maintaining Bottom AppBar - Flutter

I am building an app with a bottom appbar with classic indexed pages to navigate the main menu: class OverAllScreen extends StatefulWidget { final int initialPage; OverAllScreen(this.initialPage); @override _OverAllScreenState createState() =>…
James__pxlwk
  • 71
  • 1
  • 7
0
votes
1 answer

How do I get rid of extra BottomAppBar in Flutter?

I have extra footer BottomAppBar that I don't want to be there. I want the Bottom Navigation Bar to be nested within the Bottom App Bar because I still want to keep the notch for the Floating Action Button. The screenshot shows it clearly, as it is…
0
votes
1 answer

How to move to other fragment from Bottom Sheet Navigation Fragment

The code for The class in which I have declared Bottom app bar is: import androidx.appcompat.app.AppCompatActivity; import androidx.appcompat.widget.Toolbar; import androidx.fragment.app.Fragment; import androidx.fragment.app.FragmentManager; import…
0
votes
1 answer

'body' invisible after using BottomNavigationBar: BottomAppBar

When using the BottomNavigationBar: BottomAppBar, the body doesn't show up on screen. But when I move it, the body shows on screen. Since I have the bottom navigation bar outside of the main body as it should be, it's very puzzling as to why the…
ladyc
  • 7
  • 4
0
votes
4 answers

how to Navigate to a new screen onclick BottomAppBar icon?

i want to navigate to new screen on click icons of BottomAppBar but i get an error : only static members can be accessed in initializers final makeBottom = Container( height: 45.0, child: BottomAppBar( color: Colors.white, child: Row( …
Djamila Jada
  • 141
  • 2
  • 4
  • 11
0
votes
2 answers

Android BottomAppBar Distribute Buttons horizontally

I want to use BottomAppBar without the Navigation drawer control and Floating Action Button. When The buttons are added they are justified to right or left. I want to distribute the action icons horizontally. I couldn't find a solution around and…
1
2