Shubham Singh
03/12/2025, 8:48 PMMeet
03/19/2025, 3:26 PMAhmed Riyadh
03/19/2025, 5:54 PMindex.html
on production mode, which loads light first (which is set in the generated index.html
) and then switches to the User's Color mode (in my case Dark).Ahmed Riyadh
03/20/2025, 11:26 AMFilip Wiesner
03/26/2025, 8:34 PMAdvancedPopover
but I doesn't seem to support it out of the box. Am I missing some strategy?David Herman
04/01/2025, 9:58 PMShubham Singh
04/03/2025, 4:13 PMDavid Herman
04/07/2025, 12:31 AMMario Andhika
04/11/2025, 8:29 AMKumaran Masilamani
04/15/2025, 9:29 AMRyan Scott
04/20/2025, 7:54 PMRyan Scott
04/20/2025, 7:54 PMRyan Scott
04/20/2025, 7:55 PMRyan Scott
04/20/2025, 8:00 PMDavid Herman
04/20/2025, 8:12 PMDavid Herman
04/20/2025, 8:12 PMRyan Scott
04/22/2025, 4:36 PM@Api
annotation.phteven
04/24/2025, 7:40 PMphteven
04/28/2025, 1:51 PM@Composable
. Ideally, I would like something similar to an Application
class that I fully control. Comparing this to React, where you explicitly call the initial render function:
ReactDOM.createRoot(document.getElementById("root")).render(...);
I am also looking into the Kilua project and I prefer its approach: https://github.com/rjaros/kilua/blob/main/examples/todomvc/src/commonMain/kotlin/TodoApp.kt
In Kilua, you own the entry point, and you can set up dependencies like ApiClient
and Storage
classes outside of any @Composable
.
Routes are described as part of your app’s component tree, and nested routes are supported (e.g., for a navigation bar, main/details view).
One important use case for this is passing the router into a DI container and using it inside side effects (such as Redux-Observables) to programmatically change the user’s route (for example, redirecting to the login screen on any “forbidden” response).
Right now, this kind of navigation is only possible inside a page’s content.David Herman
05/17/2025, 1:43 AMDavid Herman
05/17/2025, 1:49 AMSeveriano Jaramillo
05/19/2025, 1:12 AMkobweb create app
), did some minor updates and added configuration to build and deploy to GitHub Pages. This is not all I want to do, but first I would like to fix some simple issues.
State such as color mode and menu state (when the available width is small) does not seem to work when the app is deployed, but it works when running it locally. Is this some kind of known issue?Meet
05/27/2025, 4:52 AMShubham Singh
05/31/2025, 9:37 PMDavid Herman
06/10/2025, 12:27 AMDavid Herman
06/20/2025, 5:20 PMDavid Herman
06/25/2025, 6:06 PMkobweb = "0.23.0-SNAPSHOT"
kotlin = "2.2.0"
Christopher Mederos
06/26/2025, 3:36 AMchax
06/29/2025, 5:05 PMDavid Herman
07/04/2025, 11:22 PM