Skip to main content
Filter by
Sorted by
Tagged with
1 vote
0 answers
105 views

Is there a way to change the icon color of the 3-button navigation bar on Android 15 & 16? I’ve already changed the background color of the status bar, the icon color of the status bar, and the ...
Spyros Gashel's user avatar
-1 votes
1 answer
70 views

When I use navigationTitle in SwiftUI, the top padding becomes too large. However, in Apple’s own apps the top area is noticeably smaller and more compact. How can I achieve the same native look with ...
Shakhzod's user avatar
0 votes
1 answer
81 views

When I put a SwifUI segmented control in a navigation bar, liquid glass seems to be making it render incorrectly. The capsule has vertical clipping and the sides show layered backgrounds. Here is my ...
Siegfoult's user avatar
  • 1,867
2 votes
2 answers
126 views

I noticed very weird behaviour regarding colors in my app. During changing Activity from Activity1 to Activity2 navigation bar changes its color (to black one if it matters) during transition. After ...
Jawegiel's user avatar
  • 131
0 votes
0 answers
29 views

I have an activity and inside this using Fragment with ConstraintLayout container. I enabled left navigation bar with swipe right but I am not able to dismiss it or know if it's dismissed as per my ...
Bajrang Hudda's user avatar
0 votes
0 answers
153 views

I'm building a React Native app using Expo and TypeScript. I want the Android navigation bar (the bar at the bottom with the back/home buttons) to be white with dark icons (i.e. dark-content). Right ...
Pixel_95's user avatar
  • 984
2 votes
3 answers
2k views

I have a problem with a layout file in my Android Project. It works perfectly in Android <= 13, but now in Android 15 the layout goes beyond the normal bounds of the touchscreen, and invades the ...
Luis A. Florit's user avatar
0 votes
1 answer
120 views

I beginner and trying to create navigation bar at small project. everything is good but when width is changing, it have vibration and shake: My logo on center of navigation bar will shake when width ...
MojiJon's user avatar
0 votes
0 answers
31 views

I would like to change the navigation bar on a weebly pre-built site (existing theme). I want to make the bar a gradient. Is there a way to do this? I did find some code for adding a gradient but I ...
Megan's user avatar
  • 1
0 votes
1 answer
161 views

In my SwiftUI detail view I have this code (part of it) import SwiftUI import MapKit import Kingfisher import BottomSheet struct VehiclePositionView: View { @Environment(\.isPresented) var ...
Pedro Cavaleiro's user avatar
0 votes
1 answer
72 views

In iOS there is a default border in title bar in MAUI. We used a renderer and the border also removed, but the title text color not changing properly. Is using renderer in MAUI the right way or is ...
Surendhar's user avatar
0 votes
2 answers
146 views

When I first load the page to index.html everything loads fine. I press the About link in the navigation bar to direct to the about.html page and it loads fine. But when I press on the About link ...
Ash's user avatar
  • 3
8 votes
0 answers
448 views

My app uses this theme (it has no light variant): <style name="AppBase" parent="@android:style/Theme.Material.NoActionBar"> ... <item name="android:...
carlosrafaelgn's user avatar
7 votes
1 answer
512 views

I've used various fragments where the entire background (fullscreen) is a single colour - say green. This has worked well on every version up until API 35, which introduced this EdgeToEdge ...
Vauxe's user avatar
  • 71
1 vote
1 answer
341 views

I'm trying to add a segmented picker in the NavigationBar under the title with SwiftUI. I've tried with the toolbar, but it was show on the top and not under the title. How can I achieve the result ...
Lorenzo Zorri's user avatar
0 votes
0 answers
88 views

I am looking to achieve 2 levels of top navbar in Sphinx: One for website navigation, another for navigating between different kinds of docs. I am using pydata-theme currently. While I can get one ...
Shubham Gupta's user avatar
0 votes
1 answer
250 views

I'm making a Kotlin Multiplatform / Compose Multiplatform app. I want this sort of graph : SplashScreen AuthScreen MainGraph HomeScreen ... SettingsScreen I want a navigation bar to navigate through ...
Damon's user avatar
  • 239
0 votes
1 answer
86 views

fun setStatusBarTransparent() { window.apply { addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS) clearFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS) } ...
ny_k's user avatar
  • 1
13 votes
2 answers
3k views

As apps with targetSdk 35 are edge-to-edge by default on Android 15, so I encountered a problem with navigation bar and status bar icons colors. When running my app on android 15, navigation bar ...
Mery Karapetyan's user avatar
0 votes
2 answers
58 views

I use NavigationRail & NavigationBar in my project. When I try to read the label of one of the destinations attached to NavigationRail, I get Text("Text") instead of "Text". ...
Arun's user avatar
  • 3
1 vote
1 answer
91 views

I have implemented a navigation bar, but the labels aren't shown for the other labels which aren't clicked.I want to show all the labels for BottomNavigationBar either they are clicked or not. ...
Tech RCV's user avatar
0 votes
2 answers
912 views

I set up my nav bar like this: .navigationTitle(selectedTab == .users ? "Working with GET request" : "Working with POST request") .navigationBarTitleDisplayMode(....
Mykyta Shapko's user avatar
0 votes
2 answers
119 views

I need a permanent bottom navigation bar with Flutter. I want to do this with 5 elements. At the same time, 4 of these 5 elements will redirect to the page and 1 will redirect to the url. When the url ...
Arif Batmaz's user avatar
-1 votes
1 answer
56 views

I'm using scaffold to use bottom navigation bar. There is a page where i need to change the bottom navigation bar widget into a custom widget like image below on a state changed. How can i do this? ...
SenjaKids's user avatar
0 votes
0 answers
52 views

In my WPF application, I'm using a Frame for navigation between pages. The issue I'm encountering is that whenever I navigate to a page that is already open, a new instance of that page is added to ...
Oriol Tomàs Lara's user avatar
0 votes
0 answers
40 views

bottomNavigationView.setOnNavigationItemSelectedListener(new BottomNavigationView.OnNavigationItemSelectedListener() { @Override public boolean onNavigationItemSelected(@NonNull MenuItem item) ...
3ARF's user avatar
  • 1
1 vote
1 answer
272 views

I'm using Android 13 Google AOSP. In Settings -> System -> Gesture -> System Navigation, neither Gesture Navigation nor 3-button Navigation works. Gesture navigation works normally, but the ...
user25601509's user avatar
0 votes
0 answers
807 views

I try to build a simple Streamlit project with these codes and libraries, `import streamlit as st from streamlit_option_menu import option_menu import warnings warnings.filterwarnings('ignore') st....
Cem ÖZÇELİK's user avatar
-2 votes
1 answer
30 views

when I scroll, the caption text passes above the navigation bar and crashes, even though it should pass below the navigation bar, how do I fix it Well, like the picture here, what I marked in red is ...
Yusuf Alhamdani's user avatar
1 vote
2 answers
1k views

In the general ThemeData of my flutter app, I have the following code to give a general style to the NavigationBar. This is the way to style the label under the icon within NavigationBarTheme, based ...
Giulia Santoiemma's user avatar
0 votes
1 answer
52 views

I'm working on an Android application and I'm trying to remove the background from a BottomNavigationView. Currently, it displays a purple (like a button) background, but I would like it to be ...
ProAslan's user avatar
0 votes
1 answer
154 views

I have a flight detail view (destination from a root navigation view) with a top bar that shows relative time to relevant times around said flight. This top bar is the first subview that sits at the ...
ScoobyDooku's user avatar
0 votes
1 answer
78 views

I'm setting up an SwiftUI app with TabView-navigation and individual NavigationStacks (to preserve individual navigation state per stack). One thing that buggles my mind is that I want to have the ...
esbenr's user avatar
  • 1,563
0 votes
2 answers
276 views

I'm experiencing an unexpected issue in Flutter where setting the same background color for both a Scaffold and a NavigationBar results in a slight difference in shade between the two, even though the ...
StativBus's user avatar
1 vote
1 answer
138 views

I am trying to add a navigation bar to my SwiftUI app using a TabView like this: import SwiftUI struct ContentView: View { @State var isLoggedIn: Bool = false var body: some View { ...
AranAli's user avatar
  • 57
1 vote
1 answer
78 views

I am implementing NavigationBar widget as bottomNavigationBar: inside Scaffold. I have three NavigationDestination items in the Navigation Bar. Two of the items has colorful indicatorColor: and one of ...
Mehedi Hasan's user avatar
0 votes
1 answer
70 views

I managed to render a full width / height background with a modifier that looks like this.- .background { AsyncImage( url: url, transaction: Transaction(animation: .easeIn) ) { ...
ssantos's user avatar
  • 16.6k
1 vote
3 answers
614 views

I'm using expo-router in my react-native project. I encountered a problem in making the bottom tabs of the application. The problem is that I don't know exactly how to start the tabs from the right ...
caspianboyka's user avatar
0 votes
3 answers
54 views

I am working on a navigation bar using HTML, CSS, and JavaScript. I already codes it and I set the display of the bar to fixed then I noticed that the content of the page is now overlaying the nav bar....
Abdulmatiin Ismail's user avatar
0 votes
1 answer
164 views

I have a NavigationBar in my app and occasionally I will show a modal bottom sheet. I would like the bottom sheet to have the same color as the NavigationBar. What is the default color for the ...
DeKekem's user avatar
  • 1,835
0 votes
2 answers
437 views

I have 2 views, lets name it view A and view B. View B will be shown by pushed from view A. In view B, I want to show Activity Indicator that cover the whole screen of the device. But in my approach, ...
wahyudi's user avatar
  • 33
0 votes
1 answer
442 views

In Swiftui, when I jump from a page containing Navigationbar to a hidden page in Navigationbar, then swipe back, and then click on the jump button, the page will freeze and not respond.I used Iphone14 ...
Code Porter's user avatar
0 votes
1 answer
377 views

I'm a newbie and created a game on native Android with Kotlin (a big mistake). https://play.google.com/store/apps/details?id=nochi.words Since I believed it, I have had nothing but problems. And the ...
stack99's user avatar
1 vote
1 answer
52 views

I have a webpage that uses a navigation bar using the following code: body { margin: 3em; } #navbar { overflow: hidden; background-color: #333; } .sticky { position: fixed; top: 0; width: ...
Jack's user avatar
  • 13
0 votes
1 answer
52 views

How can I see the NavigationBar throughout the app? also in the detail screens? import 'package:flutter/material.dart'; import 'package:prestigeshop/app_bar/ui/app_bar_nav.dart'; import 'package:...
Alessio Bertolini's user avatar
-1 votes
1 answer
89 views

I'd like to repeat the navigation bar across all pages, and the bottomnavigationbar works like a charm, but when I change pages using the drawer, the bottom navigationbar disappears. Followed this ...
Dudu Sandoval Gamarra's user avatar
2 votes
0 answers
707 views

If you select a file in the Files app on iOS you can tap on the title and get some extra actions, similar to a context menu. I want this in one of my apps and learned about the toolbarTitleMenu ...
Daniel's user avatar
  • 1,126
-2 votes
1 answer
110 views

I wrote the code separately for the start page, sign up page and login page. Afterwards I wrote the code for the navigation bar. They can run separately, but when I tried to put them together it ended ...
Pistachio_20's user avatar
0 votes
1 answer
536 views

I want to hide android navigation when calling a modal window, but I can’t do it, it is always shown when the modal is opened. I tried solutions to this question but it didn't work (Hide Android ...
Vlad Pozdnyakov's user avatar
4 votes
3 answers
2k views

I have two tabs: one is a map inside a List and the other is a simple setting view. This is the code for both: LocationView.swift import SwiftUI import MapKit struct Locations: View { var body: ...
helloimbrando's user avatar

1
2 3 4 5
39