Alexander Medvednikov

Results 230 comments of Alexander Medvednikov

Hi @atorr0 Sorry for the delay. Can you please explain what you mean by method redeclaration. A simple example? Is it related to embedded structs?

Casting ints to enums is fine, without unsafe{}. It's a very common operation. Casting ints that are outside should be checked at compile time and runtime

So this is a json decoding/encoding of sum types issue. Right now it's not supported by V's json lib.

Related: https://github.com/vlang/v/issues/14058

I agree with @ylluminate here. I think using a fast OpenGL implementation of the UI is preferable and could be a game changer. Besides, WASM still doesn't support DOM 4...

Yeah I agree. SwiftUI and Flutter work fine without CSS, although there are libs that convert CSS to Flutter declarations. https://docs.flutter-view.io/guide/styling-with-css how is ``` #button { width: 100px; } ```...

Ok, I see, thanks. Funnily enough, Qt (not sure about QtQuick) uses CSS for styles. Something like ``` btn->setStyle("color:red; padding:10px"); ``` Always found that weird.