Filipp Riabchun
02/24/2018, 11:11 PMFilipp Riabchun
02/24/2018, 11:13 PMdeviant
02/24/2018, 11:37 PMfunction material$lambda$lambda($receiver) {
$receiver.invoke_eb8iu4$($module$react_materialize.Icon, material$lambda$lambda$lambda);
$receiver.unaryPlus_pdl1vz$('HELLO THERE!');
return Unit;
}
Filipp Riabchun
02/24/2018, 11:41 PMFilipp Riabchun
02/24/2018, 11:41 PMFilipp Riabchun
02/24/2018, 11:42 PMmaterial$lambda$lambda$lambda
look likedeviant
02/24/2018, 11:46 PMdiv {
Button {
Icon { +"thumb_up" }
+"HELLO THERE!"
}
}
deviant
02/24/2018, 11:47 PMhttps://i.imgur.com/tGdF2CV.png▾
Filipp Riabchun
02/24/2018, 11:57 PMmaterial$lambda$lambda$lambda
look like
Slack ConversationFilipp Riabchun
02/24/2018, 11:58 PMdeviant
02/25/2018, 9:38 AMfunction material$lambda$lambda$lambda($receiver) {
$receiver.unaryPlus_pdl1vz$('thumb_up');
return Unit;
}
Filipp Riabchun
02/25/2018, 10:40 AMFilipp Riabchun
02/25/2018, 10:40 AMdeviant
02/25/2018, 10:44 AMdeviant
02/25/2018, 10:46 AMkotlin react
apps?
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
in the html or maybe in webpack loader?Filipp Riabchun
02/25/2018, 10:48 AMdeviant
02/25/2018, 2:39 PMmaterial-icons
npm package. seems to workchadmorrow
02/28/2018, 3:41 AMbashor
02/28/2018, 5:02 PMkotlin-wrappers
is not yet obsolete since it’s more about “extending”/kotlinizing API of some libraries. In the near future we are going to migrate kotlin-wrappers
to declarations from js-externals
instead of having own.bashor
02/28/2018, 5:02 PMm
02/28/2018, 6:38 PMm
02/28/2018, 6:39 PMh3 {
ul {
for ((index, item) in state.items.withIndex()) {
li {
key = index.toString()
+item.toString()
button {
+"×"
attrs {
onClickFunction = {
setState {
items = items.filterIndexed { i, _ -> i != index }
}
}
}
}
}
}
}
}
chadmorrow
02/28/2018, 6:56 PMattrs
really means. Is attrs
props? attributes of the specific html tags?Filipp Riabchun
02/28/2018, 6:58 PMFilipp Riabchun
02/28/2018, 6:58 PMprops
name, it would clash with component's own props in cases like props.foo = "bar"
chadmorrow
02/28/2018, 8:34 PMchadmorrow
02/28/2018, 8:35 PMchadmorrow
02/28/2018, 8:36 PMchadmorrow
02/28/2018, 8:37 PMFilipp Riabchun
02/28/2018, 8:41 PM