Aardvark.Media Documentation - aardvark-platform/aardvark.docs GitHub Wiki
- Aardvark.UI The most important bits are:
- Aardvark.UI.Primitives
Common problem with diffGenerator:
[<DomainType>]
type Tab = { name : string; url : string }
[<DomainType>]
type Tree2 =
| Vertical of Tree2 * Tree2
| Horizontal of Tree2 * Tree2
| Tab of Tab
Here for both the record Tab, as well as the union case Tab a type MTab is generated which results in a conflict. Resolution: Use a different name.