You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// This virtualization/lazy loading is done for performance and allows for lists of millions of items to be used with very high performance.
180
180
///
181
181
/// By default, this view tries to calculate and assume the size of the items in the list by calculating the size of the first item that is loaded.
182
-
/// If all of your items are not of a consistent size in the relevent axis (ie a consistent width when flex_row or a consistent height when in flex_col) you will need to specify the size of the items using [`item_size_fixed`](VirtualStack::item_size_fixed) or [`item_size_fn`](VirtualStack::item_size_fn).
182
+
/// If all of your items are not of a consistent size in the relevant axis (ie a consistent width when flex_row or a consistent height when in flex_col) you will need to specify the size of the items using [`item_size_fixed`](VirtualStack::item_size_fixed) or [`item_size_fn`](VirtualStack::item_size_fn).
183
183
///
184
184
/// ## Example
185
185
/// ```
@@ -521,11 +521,11 @@ impl<T> View for VirtualStack<T> {
521
521
.map(|layout| layout.size)
522
522
.unwrap_or_default();
523
523
let rect = Size::new(size.widthasf64, size.heightasf64).to_rect();
0 commit comments