Export scroll_to helper

This commit is contained in:
Cory Forsstrom 2023-04-20 13:34:38 -07:00
parent 4052ccf2b5
commit a38bf092a8
No known key found for this signature in database
GPG key ID: 1DFE170A4415C9F5
2 changed files with 11 additions and 2 deletions

View file

@ -392,6 +392,15 @@ pub fn snap_to<Message: 'static>(
Command::widget(operation::scrollable::snap_to(id.0, offset))
}
/// Produces a [`Command`] that scrolls the [`Scrollable`] with the given [`Id`]
/// to the provided [`AbsoluteOffset`] along the x & y axis.
pub fn scroll_to<Message: 'static>(
id: Id,
offset: AbsoluteOffset,
) -> Command<Message> {
Command::widget(operation::scrollable::scroll_to(id.0, offset))
}
/// Computes the layout of a [`Scrollable`].
pub fn layout<Renderer>(
renderer: &Renderer,