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.
È ancora in programma? È difficile creare una navigazione coerente su dispositivi mobili, soprattutto perché il menu a discesa dei tag è anche nidificato con il menu a discesa delle categorie e quindi viene visualizzato solo negli elenchi delle categorie.
Ad esempio, mi trovo in una categoria e il tag selezionato viene visualizzato nel menu a discesa dei tag:
Ma quando deseleziono la categoria, il tag è ancora selezionato (e potrei fare clic sull’icona delle informazioni del tag), ma tutti i menu a discesa sono scomparsi. È piuttosto confusionario:

Sto costruendo un forum che utilizza solo tag per l’organizzazione. Funziona benissimo sul desktop, ma con l’attuale esperienza utente su dispositivi mobili potrei solo inserire un link alla pagina dei tag nel menu della barra di navigazione. Per far visualizzare il menu a discesa dei tag su tutte le pagine, dovrei sostituire il modello mobile o ci potrebbe essere un modo più semplice?
Il nostro pensiero generale è di rifare l’intera faccenda.
1 controllo per tag / categorie / filtri… tutti. Adattare questo al mobile sarà sicuramente una sfida, ma il controllo “mega” offre così tanti vantaggi.
Ho fatto un tentativo oggi per renderlo sempre visibile e questo sembra funzionare per me senza effetti collaterali che ho potuto notare:
api.modifyClass("component:bread-crumbs", {
pluginId: "never-hidden-bread-crumbs",
hidden: false,
});
hidden è originariamente:
@discourseComputed("category")
hidden(category) {
return this.site.mobileView && !category;
},
Ho preferito renderlo nascosto solo nella pagina delle categorie.