update readme

This commit is contained in:
yggverse 2024-09-23 16:17:29 +03:00
parent 81d3215218
commit b9b226cc54

View File

@ -36,6 +36,7 @@ This guide in process
* Every module or it helper must contain and implement only one `struct`
* Composition modules (like box for window) stored in sub-folders and following same principles as parent
* Every mod access 1 level of child API, never parents (e.g.`super`)
* One mod = one widget. Create new mod for new widget implementation
* Mod constructor must return [Arc pointer](https://doc.rust-lang.org/std/sync/struct.Arc.html) for new object created (to support async operations)
### Contribution