Skip to main content
Filter by
Sorted by
Tagged with
5 votes
1 answer
120 views

I followed Android's Compose tutorial and copied the code to open and close the drawer, but I cannot get it to programmatically open or close. It swipes just fine, but I'd like it to close when I tap ...
Sammy's user avatar
  • 153
0 votes
1 answer
47 views

I'm using compose compose drawer. since, setStatusBarColor is deprecated on android 15. so, i cant use setStatusBarColor. somehow, google files app achived using some other way. This is the code i ...
gowtham6672's user avatar
  • 1,077
0 votes
1 answer
34 views

I've implemented Navigation Drawer in my project, and it seems to work, but when I navigate to another fragment, the menu stops working. I created a new one using the Android Studio template, libs ...
Delek's user avatar
  • 53
4 votes
2 answers
1k views

_reactNative.BackHandler.removeEventListener is not a function (it is undefined), getting this error while navigating to home-screen in React react-native expo. In app, there is nested navigators in ...
Shukla Dev's user avatar
0 votes
0 answers
30 views

So for a school project we need to create an app with eco-house, and I got a problem its when I open the first time the drawer everything fine because header is "solid" and nothing goes ...
Suta's user avatar
  • 1
0 votes
0 answers
26 views

this is after cleanup the inspection error while all dependencies are still same and viewBind is also true How to solve this? override fun onCreate(savedInstanceState: Bundle?) { super....
goru kapoor's user avatar
0 votes
1 answer
188 views

Hello! I am working on an Android app in Android Studio using Jetpack Compose, and I want to implement two drawers: A left drawer that can be opened and closed by swiping from the left edge of the ...
Bjurhager's user avatar
0 votes
0 answers
172 views

Question: (I don't use IOS) I am working on a React Native project and encountering the following error when trying to run the app on an Android emulator: ERROR Invariant Violation: ...
ArifEminK's user avatar
0 votes
1 answer
70 views

I'm newbie with flutter anyone can help me How to Reset Layout Page Drawer, After we Change the page and get back ? this my code (update): import 'package:flutter/foundation.dart'; import 'package:...
Dreamer's user avatar
  • 21
0 votes
0 answers
56 views

I’m working on a React Native app with two user flows: Employer and Employee. Both flows are structured similarly: The user completes an onboarding process. After onboarding, they are redirected to ...
Leonel de la Vega's user avatar
1 vote
2 answers
472 views

I'm using Jetpack Compose and I am trying to enable opening a ModalNavigationDrawer via a swipe gesture (from left to right) similar to how Twitter does it. I have a HorizontalPager that occupies the ...
Danfb__'s user avatar
  • 387
0 votes
1 answer
220 views

I'm trying to implement a Navigation drawer in compose project. I'm trying to: Have a splash/login screen where I don't want to show the topbar that opens the drawer. After successful login, navigate ...
flopez's user avatar
  • 55
1 vote
0 answers
80 views

// Navigation.js import React, { useState } from 'react'; import { createNativeStackNavigator } from '@react-navigation/native-stack'; import { createDrawerNavigator } from '@react-navigation/drawer'; ...
saif ali's user avatar
0 votes
1 answer
526 views

I am working on an Expo project using expo-router and implementing a Drawer for navigation. The issue occurs when I set headerShown: true in the screenOptions. While the drawer opens, tapping on the ...
Victor Rutskin's user avatar
0 votes
1 answer
100 views

I have a WPF application which implements a NavigationView using the ModernWPF toolkit. The Navigation view menu comprises of three items, each with icon and selection text, as you would expect, and a ...
user5265160's user avatar
0 votes
1 answer
154 views

I am using Navigation Drawer to create a sidebar menu. It renders fine when running it locally but when deploying it to the google server - https://cancer-hacked.web.app/ - The Navigation Menu Icon in ...
MattJ's user avatar
  • 149
0 votes
1 answer
74 views

I have not been able to achieve this for days now. My topmost navigator is a DrawerNavigator and it has multiple links to the a particular child Stack navigator but also to other screens. This is my ...
Rustozce's user avatar
0 votes
1 answer
136 views

I'm using React Navigation in my React Native project with a combination of Stack Navigator and Drawer Navigator, but when I try to use navigation.openDrawer() in my component, I'm getting the ...
RRC's user avatar
  • 1
0 votes
1 answer
77 views

I have a queue that needs to execute tasks. There are two types of tasks: fragment work and background work. But I want to put all the work codes in the viewmodel for unified management. How should I ...
乐于助人的王老师's user avatar
0 votes
1 answer
42 views

My navigation drawer is visible behind the default footer of the phone (back button, home button, recent apps button). My I want the default footer to hide the navigation drawer. I don't want to hide ...
Akhil's user avatar
  • 1
1 vote
0 answers
33 views

Look at the following GIF. When the checkbox is checked, the green area (Column in MaxBox) detects swipes from right to left. Each such swipe increments the counter by one. When the checkbox is ...
sanitizedUser's user avatar
0 votes
1 answer
89 views

I need to refresh the drawer contents to apply, specifically, the font size changes made in the settings page. The drawer is defined in the MyHomePage class. A portion of my code is below. I need a ...
rusty's user avatar
  • 1,231
1 vote
0 answers
23 views

I want to customised my navigation drawer just like shown in image. In menu item I used layout for that I want like this I used this layout but it is shifted to right side.I want to set text and image ...
Susheel Singh's user avatar
0 votes
0 answers
43 views

I would like to use StreamBuilder to show data especially in my drawer (all my friends requests). However, when I use StreamBuilder (or even FutureBuilder), I have only a circular progress indicator ...
Julien's user avatar
  • 19
0 votes
1 answer
66 views

I get the following error when I try to invoke _pagecontroller.jumpToPage or _pagecontroller.animateToPage: Exception has occurred. _AssertionError ('package:flutter/src/widgets/scroll_controller....
Evan R.'s user avatar
  • 1,264
0 votes
1 answer
28 views

I have been trying to have two different navigations depending on role. I'm not sure I'm using the right names and words, so, here's an image example of what I mean: (Sorry the image is huge, I'm a ...
August's user avatar
  • 11
0 votes
1 answer
75 views

I want to replicate the menu that Google has in its applications, but I don't know if there is a component like NavigationView and DrawerLayout that allows this menu to be made but that is not fixed ...
caflorezv's user avatar
0 votes
0 answers
31 views

Is there a way to navigate to a stack navigator screen from the drawer navigator by clicking it? I mean: <Drawer.Screen name="Profile" component={ProfileScreen} /> Here, I don't want ...
JeremyFc's user avatar
  • 224
0 votes
1 answer
416 views

I want to hide the header of drawer through all the screens of my form that is actually a stack. I'm working with React Native CLI. Add Patient Stack <Stack.Navigator screenOptions={{headerShown: ...
gomii's user avatar
  • 3
1 vote
1 answer
303 views

So I am new to react native and have been trying to implement drawer navigators. The issue I am facing is that when I click on the icon on the right side I want the right side drawer to open but it ...
abcd's user avatar
  • 11
3 votes
0 answers
729 views

I would like my app to have a drawer on the main page, and stack navigation on all the rest of the pages. I'm planning on setting out pages so that only some will be accessed from the drawer, others ...
The-IT's user avatar
  • 738
2 votes
0 answers
594 views

Is it possible to have a LazyColumn with a SwipeToDismissBox also work correctly within a ModalNavigationDrawer? I have a basic composable with a ModalNavigationDrawer that has a LazyColumn within it. ...
Callum Marks's user avatar
0 votes
1 answer
50 views

How to disable the navigation drawer together with hamburger button and toolbar while the user is on login fragment (or sign up fragment)? After the user login in app, I want to enable the navigation ...
Teo's user avatar
  • 3
0 votes
1 answer
168 views

So I'm learning about how to incorporate the navigation drawer in my android app. I've successfully managed to incorporate it in my app. However, I cant find out how to change the ripple color when I ...
humble's user avatar
  • 3
0 votes
1 answer
107 views

in a Xamarin.Forms 5.0.0.2662 version app, using FlyoutPage, the drawer menu pops from the right as expected but it's not completely shown or it even has a gap in some scenarios. The following picture ...
jordi casas's user avatar
0 votes
1 answer
152 views

Android Studio ships with the sample app 'Navigation Drawer Views Activity', which can be created via the new app dialog. I've tried to follow the code in it to implement a navigation drawer in my app....
user1785730's user avatar
  • 3,839
0 votes
2 answers
889 views

I would like to have the App bar at the top with 'hamburger' on the left, when the hamburger is clicked , Sidenav (drawer) should appear. I am using React Material and Next.js (App router). The app ...
user17449555's user avatar
1 vote
2 answers
300 views

I have navigation drawer with multiple menu Items. When I click on any item it gets selected (Inbox) with highlighted color . After that if I click some other items (flagged Mail) it also gets ...
Ashish singh's user avatar
0 votes
1 answer
109 views

Goodmorning all, i am new to react native and i am trying to create a page that onpress of a element of the list or a button pass the variable to the other page i am using a drawer for the side menu,...
andrea meneguzzo's user avatar
0 votes
0 answers
294 views

I developed a custom drawer that behave like a Top sheet. Everything is good but I try to Drag up the drawer, the animation is not smooth when drawer slide up (exit), Animation stuck for a second when ...
Abdul Waheed's user avatar
  • 1,062
1 vote
0 answers
134 views

I've reviewing the nano degree videos i took a year ago to solidify my memories and my understanding but one thing bother me is that in the navigation course they apply the MVVM design pattern and use ...
Omar A. Khaled's user avatar
7 votes
6 answers
7k views

My Codes: /** * Sample React Native App * https://github.com/facebook/react-native * * @format */ import React from 'react'; import { createDrawerNavigator} from '@react-navigation/drawer'; ...
skywalker's user avatar
1 vote
0 answers
65 views

I am trying to modify the width material drawer example provided in their official document https://mui.com/material-ui/react-drawer/#permanent-drawer. How can I set Material Drawer width to the width ...
user16971617's user avatar
0 votes
0 answers
63 views

The problem is that I am utilizing Flutter to design an application, and I have made a custom drawer and app bar. If an item in a drawer is clicked, it should open; but, if you click on item 1 again, ...
Future Insight's user avatar
0 votes
3 answers
671 views

I want to open my left navigation pane only by swiping left to right from any point on the screen and not just from the extreme left. @override Widget build(BuildContext context) { return ...
Rishabh Tripathi's user avatar
0 votes
0 answers
43 views

I am a beginner react-native developer and still learning things from different sources, currently I started creating small project where I decided to use drawer navigation. I followed the source and ...
Saba Phruidze's user avatar
1 vote
1 answer
79 views

I have Created a Drawer on my Profile page ( its one of the three in bottom TabNavigator of my App). I am trying to add a logout item in the Drawer. I am able to add an item (maybe wrong way) but ...
Ashish Kumar's user avatar
0 votes
1 answer
642 views

Hello I am trying to do create a drawer layout in React Native CLI (Not Expo), but all code I tried or found, even ChatGPT won't work. Here is my last code. Can some help me a tel me what I missed? I ...
Stefan's user avatar
  • 41
0 votes
1 answer
92 views

i want go back functionality in navigation view. i would like to know how to add on click listener to go back button which is located inside my navigation view. i have code like below. my activity ...
coppersmith's user avatar
0 votes
1 answer
151 views

I am new to react native, I am trying to insert elements into the drawer header, my idea is to remove the title from the screen and create a new title with onPress and add two more elements, but I can'...
user avatar

1
2 3 4 5
116