MGuide — production app built with Konsta UI #269
puppyum
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
MGuide (mguide.app) is an interactive campus map for the University of Michigan, using Konsta UI for its entire component layer.
Konsta components used: App, Page, Sheet, List, ListItem, Toggle, Button, Chip, Card, Progressbar, Dialog. The app wraps everything in
<App theme={platform} dark={isDarkMode}>with platform auto-detection (iOS on Apple devices, Material elsewhere).A few things we learned along the way:
.k-toggle:has(input:checked)rather than a class — and its defaultinline-blockbreaks flex layouts (fixed withdisplay: inline-flex !important)opened={false}— wrapping with a conditional prevents phantom renderingbackdrop-filter: blur(40px) saturate(1.8)to Konsta surfaces for a glass effect while Material uses opaque surfacesKonsta made it possible to ship a native-feeling app on both iOS and Android without building two separate UIs.
All reactions