diff options
author | 2024-03-24 05:03:09 +0100 | |
---|---|---|
committer | 2024-03-24 05:03:09 +0100 | |
commit | f0ae9a0c38c2532220a7460916604914db94c078 (patch) | |
tree | a1f0d1732108fa87ce4a63e76def9c38c8804d5d /examples/gradient | |
parent | e657dc2ecd2ffa72c0abd87f9a59dcc1acbc7083 (diff) | |
download | iced-f0ae9a0c38c2532220a7460916604914db94c078.tar.gz iced-f0ae9a0c38c2532220a7460916604914db94c078.tar.bz2 iced-f0ae9a0c38c2532220a7460916604914db94c078.zip |
Use `Catalog` approach for all widgets
Diffstat (limited to 'examples/gradient')
-rw-r--r-- | examples/gradient/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/gradient/src/main.rs b/examples/gradient/src/main.rs index 22c21cdd..2b906c32 100644 --- a/examples/gradient/src/main.rs +++ b/examples/gradient/src/main.rs @@ -60,7 +60,7 @@ impl Gradient { } = *self; let gradient_box = container(horizontal_space()) - .style(move |_theme, _status| { + .style(move |_theme| { let gradient = gradient::Linear::new(angle) .add_stop(0.0, start) .add_stop(1.0, end); |