Nikolay M
Nikolay M
I also got stack overflow on this code: ```fsharp let task = async { let countAgents = 1 let countMessages = 1_000_000 let loop (mailbox: Hopac.Mailbox) = job { match!...
I successfully reproduced bug with all examples above in Debug and Release configuration with and without tailcall optimization. You can try to paste any code block below into main function...
There are only one problem with codegen for Android at this moment: we can not instantiate types with constructors. Every View in Android have `Context` argument. Context argument can be...
I think we need to add `constructor` parameter for type to json config. However, the ViewElement has a Create function that has no parameters. So, we need a way to...
I am currently working on Fabulous.iOS and Fabulous.Android. I will post here problems I faced to take into account in future Fabulous releases.
In some cases we need to inject properties into constructors. For example `UIKit.UIBarButtonItem`: There is constructor with systemItem parameter. This parameter can be specified only in constructor and can not...
> Regarding your need to access the Android Context when creating a control, where does that context come from? Does it come from the root of your application? (e.g. Program.mk......
> If you can always access the context from the direct parent, maybe we could change `Create` to `static member Create(curr: ViewElement, parentOpt: obj voption)` then? > > Fabulous can...
iOS constraints can reference a parent view from child view. Currently this is not possible with Fabulous. Fabulous create View and Update it's properties before attach view to parent. We...
Hm. iOS do not allow to reference parent from child in constraints. It looks like visual disigner convert child -> parent constaint to parent -> child.