sologeek

Results 6 issues of sologeek

# Widget Optimize Plan ## Goal Through the theme default configuration makes the control easier to use and provides rich customization capabilities. ## To be optimized widget - [x] Button...

enhancement

**Problem** AppCtx::remove_wnd after paint panic **Steps To Reproduce** Steps to reproduce the behavior: 1. Create the second window 2. Render a widget to the second window 3. Remove the second...

bug

![image](https://github.com/RibirX/Ribir/assets/4135099/f1bbb46b-33bc-4351-a1ce-2b1595747b53) ![image](https://github.com/RibirX/Ribir/assets/4135099/175dfef5-91a3-4783-88b4-ce1142abc7e1)

```rust fn w() -> impl WidgetBuilder { fn_widget! { let support_text = desc.map(|desc| { @SupportingText(Label::new(desc.to_owned())) }); @ListItem { @HeadingText(Label::new("")) @ { supporting_text } } } } ``` ``` the trait...

bug

```rust fn w_parent(msg: S) -> impl WidgetBuilder where S: StateWriter, S::OriginWriter: StateWriter, { w_child(msg.clone_writer()) } fn w_child(msg: S) -> impl WidgetBuilder where S: StateWriter, S::OriginWriter: StateWriter, { } ``` ```...