Skip to content

Commit 5a654c2

Browse files
committed
fixup! fix(deps): switch to ratatui-core (catppuccin#65)
1 parent fa0bb4f commit 5a654c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/iced.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! Example demonstrating integration with the `iced` crate.
22
use iced::{
33
application,
4-
daemon::Appearance,
4+
theme::Style,
55
widget::{button, column, container, text},
66
Alignment::Center,
77
Element,
@@ -69,7 +69,7 @@ impl Counter {
6969

7070
fn main() -> Result {
7171
application(|| Counter { value: 0 }, Counter::update, Counter::view)
72-
.style(move |_, _| Appearance {
72+
.style(move |_, _| Style {
7373
background_color: COLORS.base.into(),
7474
text_color: COLORS.text.into(),
7575
})

0 commit comments

Comments
 (0)