fix: search input border style

This commit is contained in:
Ashley Wulber 2023-08-23 17:42:21 -04:00 committed by Ashley Wulber
parent 55416c8b9d
commit d35dfad486
2 changed files with 24 additions and 5 deletions

View file

@ -508,6 +508,14 @@ impl State {
.width(Length::Fill)
.on_input(Message::InputChanged)
.into(),
cosmic::widget::search_input(
"test",
&self.entry_value,
Some(Message::InputChanged("".to_string())),
)
.width(Length::Fill)
.on_input(Message::InputChanged)
.into(),
])
.into()
}