dioxus/examples/core_reference/README.md
2022-01-03 13:26:15 -05:00

1.9 KiB

Reference Guide

This folder holds a bunch of useful reference code. However, none of the code is meant to be executed (nothing special will happen).

Reference: What it does
Basics How to render a simple app
Empty Components can return None
Children Components can have children
Suspense Suspense can be achieved with use_suspense
Conditional Rendering Elements can be hidden conditionally
Controlled Inputs Inputs are "controlled" similar to React
Fragments Components can return multiple elements without a root
Inline Styles Styles can be inlined as element attributes
Spread Pattern for Props Props can be spread into component calls
Iterators Lists of elements can be made from iterators
Listener State can be updated from event listeners
Memo Memoization is controlled via PartialEq
Custom Elements Define custom elements
Anti-patterns What not to do!