I was wondering if it would be plausible (whether through CSS or a component) to have a dropdown in the mobile view that is similar to that in desktop - meaning showing categories as opposed to Latest, Top, etc.

I was wondering if it would be plausible (whether through CSS or a component) to have a dropdown in the mobile view that is similar to that in desktop - meaning showing categories as opposed to Latest, Top, etc.

I’m working on it, and have something almost finished, I just need to improve a part of our internal library to allow it. Should come rather soon.
That’s awesome!! Thanks @j.jaffeux 
FTR, it’s being worked on in this PR if you want to follow along
Did this end up being implemented?
No I didnt so far for mulitple reasons, we worked on double nesting categories support and reworked a lot of dropdowns internals.
Will update if we come up with a good solution.
Joffrey will that potentially include the tag picker too?
Yes possibly 
I’m confused, I’m waiting for this feature (category and tag dropdown in mobile view) but noticed that in my instance they’re already present on any category page, but nowhere else.
Is this the current behavior and I just missed it - or am I seeing it differently due to some plugin/TC? Is there currently any way of enabling this on the other pages?
That’s the behavior that has existed for a decent amount of time now… the category dropdowns appear on category topic lists, but not on /categories or aggregate pages like /latest /new /top.
It should be possible to get those dropdowns on those other pages in a theme today, but I don’t believe anyone’s tried it yet.
We’re still planning on doing this by default, but other features and customer work have taken priority.
¿Sigue esto en un plan de desarrollo? Es difícil crear una navegación coherente en dispositivos móviles, especialmente porque el menú desplegable de etiquetas también está anidado con el menú desplegable de categorías y, por lo tanto, solo se muestra en las listas de categorías.
Por ejemplo, estoy en una categoría y la etiqueta seleccionada se muestra en el menú desplegable de etiquetas:
Pero cuando anulo la selección de la categoría, la etiqueta sigue seleccionada (y podría hacer clic en el icono de información de la etiqueta), pero todos los menús desplegables han desaparecido. Eso es bastante confuso:

Estoy construyendo un foro que solo utiliza etiquetas para la organización. Funciona muy bien en el escritorio, pero con la experiencia de usuario actual en dispositivos móviles, solo podría poner un enlace a la página de etiquetas en el menú de la barra de navegación. Para que el menú desplegable de etiquetas se muestre en todas las páginas, ¿necesitaría reemplazar la plantilla móvil o podría haber una forma más sencilla?
Nuestro pensamiento general aquí es rehacer todo el conjunto.
1 control para etiquetas / categorías / filtros … todos ellos. Adaptar esto a dispositivos móviles será sin duda un desafío, pero el control “mega” viene con tantas ventajas.
Hoy intenté hacerlo siempre visible y esto parece estar funcionando para mí sin ningún efecto secundario que pudiera notar:
api.modifyClass("component:bread-crumbs", {
pluginId: "never-hidden-bread-crumbs",
hidden: false,
});
hidden es originalmente:
@discourseComputed("category")
hidden(category) {
return this.site.mobileView && !category;
},
Preferí ocultarlo solo en la página de categorías.