Results 23 comments of koti

Example component ```rust #[component] fn Hello(cx: Scope, name: &'static str) -> impl IntoView { let styler_class = style! {"Hello", div.one{ color: red; } div #two{ color: blue; } div {...

I am closing this issue. Any issues relating to scoped css, one can raise at https://github.com/abishekatp/stylers

Thank you. May be you can add this example to README.

It looks like there is a typo ```#![feature(type_alias_in_trait)]``` should be read as ```#![feature(type_alias_impl_trait)]```

Literally waiting for this!

General drag and drop (of elements on the page) is not working on Windows. But it is working on Mac.

I have two lists, i want to drag and drop from one list to another. Is there any work around until this issue is fixed for windows? Mac is working...

Today, i was writing rust after a long time, some basic math functions like below. Then suddenly i realised it won't work. Please make them work! ```rust fn direct_prop(x1: f32,...

Below code is working. Thanks. ```rust #[component] pub fn MyPage(page_name: ReadOnlySignal) -> Element { let mut field_name = use_signal(|| page_name()); let _ = use_resource(move || async move { field_name.set(page_name()); });...

Ideally router dynamic segments should be treated as separate components, like below. This will make things simple in complex UIs. Otherwise default values in signals behave differently depending on which...