fix(inline_input): wrong colors for focused style

This commit is contained in:
Michael Aaron Murphy 2024-06-20 13:57:58 +02:00
parent d8cb87cae7
commit bd84f1f07d
No known key found for this signature in database
GPG key ID: B2732D4240C9212C
2 changed files with 7 additions and 8 deletions

View file

@ -149,7 +149,10 @@ where
/// Creates a new inline [`TextInput`].
///
/// [`TextInput`]: widget::TextInput
pub fn inline_input<'a, Message>(placeholder: impl Into<Cow<'a, str>>, value: impl Into<Cow<'a, str>>) -> TextInput<'a, Message>
pub fn inline_input<'a, Message>(
placeholder: impl Into<Cow<'a, str>>,
value: impl Into<Cow<'a, str>>,
) -> TextInput<'a, Message>
where
Message: Clone + 'static,
{