docs: Change render
function's return type (#27229)
This commit is contained in:
parent
cf7d639fbc
commit
962709f42c
1 changed files with 2 additions and 2 deletions
|
@ -42,7 +42,7 @@ To bind actions, chain `on_action` on to your element:
|
||||||
|
|
||||||
```rust
|
```rust
|
||||||
impl Render for Menu {
|
impl Render for Menu {
|
||||||
fn render(&mut self, window: &mut Window, cx: &mut Context<Self>) -> impl Component {
|
fn render(&mut self, window: &mut Window, cx: &mut Context<Self>) -> impl IntoElement {
|
||||||
div()
|
div()
|
||||||
.on_action(|this: &mut Menu, move: &MoveUp, window: &mut Window, cx: &mut Context<Menu>| {
|
.on_action(|this: &mut Menu, move: &MoveUp, window: &mut Window, cx: &mut Context<Menu>| {
|
||||||
// ...
|
// ...
|
||||||
|
@ -59,7 +59,7 @@ In order to bind keys to actions, you need to declare a _key context_ for part o
|
||||||
|
|
||||||
```rust
|
```rust
|
||||||
impl Render for Menu {
|
impl Render for Menu {
|
||||||
fn render(&mut self, window: &mut Window, cx: &mut Context<Self>) -> impl Component {
|
fn render(&mut self, window: &mut Window, cx: &mut Context<Self>) -> impl IntoElement {
|
||||||
div()
|
div()
|
||||||
.key_context("menu")
|
.key_context("menu")
|
||||||
.on_action(|this: &mut Menu, move: &MoveUp, window: &mut Window, cx: &mut Context<Menu>| {
|
.on_action(|this: &mut Menu, move: &MoveUp, window: &mut Window, cx: &mut Context<Menu>| {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue