From b9b226cc548df332d0f115802dbe45fc9c7ca9de Mon Sep 17 00:00:00 2001 From: yggverse Date: Mon, 23 Sep 2024 16:17:29 +0300 Subject: [PATCH] update readme --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index ee3bd04d..e25ac1c8 100644 --- a/README.md +++ b/README.md @@ -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