navigationbar Questions
3
Solved
I'm writing an application using react-native, and I'm trying to show content behind status and navigation bars. I managed to solve this issue by adding some code styles.xml. This managed to solve ...
Datestamp asked 2/2, 2022 at 23:5
2
Solved
I have the following (on iOS 16):
NavigationStack
{
Form
{
....
}
}
.navigationTitle("Hello")
.navigationBarTitleDisplayMode(.inline)
The navigation bar background only appears when ...
Karolynkaron asked 28/1, 2023 at 12:7
4
Solved
struct ContentView: View {
@State var hideNavigationBar: Bool = false
var body: some View {
NavigationView {
ScrollView {
VStack {
Rectangle().fill(Color.red).frame(height: 50)
.onTapGestu...
Marrin asked 4/9, 2020 at 12:18
2
Solved
I made a custom nav bar. and added a scroll view below it. The problem I am getting is when I scroll down, the data inside scroll view comes over the navigation bar. Here is the screenshot:
My cod...
Christean asked 18/4, 2022 at 11:29
7
Solved
I ran my app on a Nexus 5 (Android 5) but I encountered the problem that the soft NavigationBar at the bottom overlaps the last item of my ListView. I've tried to add fitsSystemWindows to my style ...
Rosiorosita asked 31/12, 2014 at 15:52
6
i'd like to change the colour of the active menu links to green. I tried various ways (looking at the developper mode what rules applied from the framework), but it did not work. Can you please adv...
Intimacy asked 20/9, 2018 at 16:46
2
Solved
I'm using this code to hide a navigation bar and Back button but when the view is loaded i still can see the back button for a fraction of second and then it disappears. Is there any way to prevent...
Bassorilievo asked 2/6, 2020 at 17:44
8
Solved
I was wondering how I could hide the navigation bar in an Android application?
I know how to hide it initially, but as soon as I touch the screen it pops back up. I want to hide it the same way g...
Vexillum asked 12/6, 2015 at 21:43
8
This is a SwiftUI question, not UIKit
I'm trying to set a different font for the navigation bar title using SwiftUI. My suspicion is that this isn't supported yet. Here's what I've tried:
var body:...
Encephalomyelitis asked 14/6, 2019 at 3:8
6
Solved
AppStore app has an icon with an image on the right side of the NabBar with Large Title:
Would really appreciate if anyone knows how to implement it or ideas on how to do it.
BTW: Setting an ima...
Talapoin asked 1/11, 2017 at 19:21
12
Solved
I'm adding a BottomNavigationView to a project, and I would like to have a different text (and icon tint) color for the selected tab (to achieve greying out non-selected tabs effect). Using a diffe...
Strapped asked 30/10, 2016 at 2:0
28
Solved
How to change the navigation bar title color in SwiftUI
NavigationView {
List {
ForEach(0..<15) { item in
HStack {
Text("Apple")
.font(.headline)
.fontWeight(.medium)
.color(.or...
Topee asked 8/6, 2019 at 10:29
15
Solved
I want to hide navigation bar permanently in my activity(not whole system ui).
now i'm using this piece of code
getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_HIDE_NAVIGATIO...
Cosenza asked 12/2, 2014 at 9:56
14
I'm using really naive code to show a bottom sheet dialog fragment:
class LogoutBottomSheetFragment : BottomSheetDialogFragment() {
override fun onCreateView(inflater: LayoutInflater, container:...
Yurev asked 29/11, 2017 at 13:25
3
I read a similar question about that issue. But that only expand the button size use .padding(). The red region in the snapshot is the tappable area.
The trailing padding to screen edge inserted ...
Aeolic asked 20/5, 2020 at 11:19
5
Solved
When I`m trying to force NavigationBar to be MaterialTheme.colorScheme.surface color(see Material 3 Guidelines), background color of app and color of NavigationBar differs. Example: color of Naviga...
Soniferous asked 1/2, 2022 at 14:49
8
I want to change the color of the navigation bar from black (w/ white icons) to white (w/ black icons).
Desired result (as seen in uCrop) :
I know how to change the status bar color via android...
Devaney asked 7/4, 2016 at 15:9
5
Solved
In the image above id like to change -02:49 to a color such as Color.blue
I've tried:
struct ContentView: View {
var body: some View {
PlayerView().accentColor(Color.blue)
}
}
and
I've...
Guttapercha asked 20/9, 2019 at 21:23
11
Solved
In my app I need to change the bottom navigation bar color. I watched many post but cant find with the solution. I am using appCompat library.
v21/styles.xml
<style name="AppTheme" parent="T...
Armington asked 8/1, 2015 at 11:30
3
Solved
I have two structs ContentView.swift
struct ContentView: View {
var body: some View {
NavigationView{
ZStack {
Color(red: 0.09, green: 0.63, blue: 0.52)
.edgesIgnoringSafeArea(.all)
VStack...
Pilate asked 13/5, 2020 at 20:22
6
I have bottom navigation bar on click of item in navigation bar i am replacing fragments. I have 3 fragments A,B,C so on click of b item B fragment is loaded and in B i am calling 3-4 APIs. So now ...
Nickell asked 14/3, 2017 at 8:49
8
Solved
I recently updated my Xcode to 11.4. When I run the app on the device, i've noticed that all my navigations item's titles gone fully black when being set from storyboard.
You can't change neither...
Abdominal asked 25/3, 2020 at 12:23
9
Currently I couldn't find any method to change the color/background of the navigation bar in SwiftUI. Any tips?
Ehrenburg asked 26/6, 2019 at 13:4
2
Solved
How can I get this style in my android app? White navigationbar and grey icons. An example is when opening the application drawer.
I have tried many options but without success.
the application mi...
Kling asked 13/3, 2018 at 11:21
6
Solved
I have a mat-tab-nav-bar navigation bar for my website, but the mat-tab-link blue underlining bar won't chase the active button. It just stays at the first button, and doesn't move. The buttons do ...
Cavender asked 13/5, 2018 at 6:7
1 Next >
© 2022 - 2024 — McMap. All rights reserved.