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.
Isso ainda está em um roteiro? É difícil construir uma navegação consistente no celular, especialmente porque o menu suspenso de tags também está aninhado com o menu suspenso de categorias e, portanto, só aparece nas listas de categorias.
Por exemplo, estou em uma categoria e a tag selecionada aparece no menu suspenso de tags:
Mas quando desmarco a categoria, a tag ainda está selecionada (e eu poderia clicar no ícone de informações da tag), mas todos os menus suspensos desapareceram. Isso é bastante confuso:

Estou construindo um fórum que usa apenas tags para organização. Funciona bem no desktop, mas com a UX atual no celular, eu só poderia colocar um link para a página de tags no menu da barra de navegação. Para que o menu suspenso de tags apareça em todas as páginas, eu precisaria substituir o template do celular ou haveria uma maneira mais simples?
Nosso pensamento geral aqui é refazer tudo.
1 controle para tags / categorias / filtros … todos eles. Encaixar isso no celular certamente será um desafio, mas o controle “mega” traz tantas vantagens.
Tirei uma foto hoje para torná-la sempre visível e isso parece estar funcionando para mim sem nenhum efeito colateral que eu pudesse notar:
api.modifyClass("component:bread-crumbs", {
pluginId: "never-hidden-bread-crumbs",
hidden: false,
});
hidden é originalmente:
@discourseComputed("category")
hidden(category) {
return this.site.mobileView && !category;
},
Preferi torná-lo oculto apenas na página de categorias.