AJ Alt
05/06/2021, 4:27 PM0.0.0-web-dev-11
doesn't support Kotlin 1.5. Is there a version that does?Chris Sinco [G]
05/07/2021, 2:03 AMiframe
is not in the DOM API, what does one do?Daniele B
05/09/2021, 8:57 AMSaveableStateHolder
an Android-only component or does it also work on Web and Desktop?
https://developer.android.com/reference/kotlin/androidx/compose/runtime/saveable/SaveableStateHolder
It seems like it could be a good base to build a multiplatform Compose Navigation component.
The current Android's Compose Navigation isn't compatible with the other Compose platforms, as it's a wrapper to the old Java-written Android Navigation.SrSouza
05/09/2021, 7:52 PMMrPowerGamerBR
05/10/2021, 1:56 PMjava.lang.IllegalStateException: Unreachable execution: there could not be back-links
when compiling? I can't figure out what can trigger this exception, in my code sometimes even stuff like "having two composable calls with the same arguments" can cause this issue.epabst
05/12/2021, 5:33 PMMichael Paus
05/12/2021, 5:44 PMMarko Novakovic
05/13/2021, 3:14 PMcompose-web
?Justin Yue
05/17/2021, 5:35 PMFabio Santo
05/17/2021, 11:52 PMInput
composable?
In need to get the value out of it, I can't find anything to hook my state to....
should I use the ref
attribute maybe ?hfhbd
05/18/2021, 9:43 AMcafonsomota
05/18/2021, 1:26 PMweb-getting-started sample
, and I’ve noticed that functions like Column
or Row
don’t seem to work. I’ve just grabbed the Button
s and Span
and add them inside Column
. Is there something that I’m missing?Minecraaftt
05/18/2021, 11:43 PMCarter
05/20/2021, 2:48 PMmirland
05/20/2021, 4:42 PMJohn O'Reilly
05/20/2021, 7:52 PMDaniele B
05/22/2021, 6:44 PMScaffold
available also in Compose for Web?Big Chungus
05/23/2021, 7:10 PMBig Chungus
05/24/2021, 12:15 AMattrs
without one overiding other's classes? I've tried this, but only the latest classes remain
@MDCDsl
@Composable
inline fun MDCIconButton(
icon: String,
crossinline attrs: AttrsBuilder<Tag.Button>.() -> Unit = {},
crossinline style: (StyleBuilder.() -> Unit) = {},
) {
MDCIconButton(
attrs = {
classes("mdc-icon-button", "material-icons")
attrs() // <------------------------------ If the consumer sets classes here, above classes are gone
},
style = style,
) {
Text(icon)
}
}
orangy
05/25/2021, 12:24 PMhfhbd
05/25/2021, 1:25 PMMinecraaftt
05/26/2021, 2:55 AMSam
05/26/2021, 8:26 AMwindow.location.pathname
? I'd like to use single html template and make renderComposable()
inject different DOM tree based on the current pathname
. Web compose works on root host by default, and browser returns Cannot GET /path-name/
when I try to reach host/path-name/
. Is there currently any way to define supported paths so I can render different UI for them, provide 404 templates, etc?Greg Steckman
05/26/2021, 2:53 PMCarter
05/26/2021, 7:20 PMMinecraaftt
05/26/2021, 11:52 PMtheapache64
05/28/2021, 8:05 AMCarter
05/28/2021, 12:13 PM[JB] Shagen
05/28/2021, 1:08 PMclasses {
+"a"
+"b"
}
and suggest everyone to use just classes("a", "b"). Since previous release this method behaves cumulative and there are no cases that can be covered with "regular" API call compared to the builder counterpart.
If you know such cases or think that the builder version is still preferable in some cases - let's discuss. We are not making any promises but it would be very helpful at least to take into consideration any points we've missed.
Speak now or never )jtravis
05/28/2021, 4:31 PMjtravis
05/28/2021, 4:31 PMSam
05/28/2021, 8:16 PMjsBrowserRun
task with --continuous
flag, but it's not as fast as typical hot reload.