From 14812a26a6fc3d3a9a2302349723bfc1a5a51eb0 Mon Sep 17 00:00:00 2001 From: StarArawn <toasterthegamer@gmail.com> Date: Wed, 9 Feb 2022 07:52:08 -0500 Subject: [PATCH] Small minor readme changes. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 11775bd..3a45cad 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Kayak UI is in the very early stages of development. Important features are miss - Basic widget and global state management - Input events (Mouse, Keyboard, Char) - Fast and accurate layouts using morphorm: https://github.com/geom3trik/morphorm -- A few default widgets check out [src/widgets](./src/widgets)! +- A few default widgets (check out Kayak's [built-in widgets](./src/widgets)!) - Style system built to kind of mimic CSS styles. - Image and Nine patch rendering. - Vec widgets see vec_widget example! @@ -69,6 +69,7 @@ You can easily declare your own custom widgets: ```rust #[widget] pub fn MyCustomWidget(props: MyCustomWidgetProps) { + let children = props.get_children(); rsx! { <> {children} -- GitLab