overflow_view icon indicating copy to clipboard operation
overflow_view copied to clipboard

A widget displaying children in a line until there is not enough space and showing a the number of children not rendered.

Results 8 overflow_view issues
Sort by recently updated
recently updated
newest added

Hey @letsar, I implemented the #2 enhancement request (Wrapped items). The example is also updated. The picture below is an example that demonstrates how to control maximum number of rows/columns...

Currently I believe it's only possible to layout the children from left to right (or top to bottom). It would be helpful to be able to reverse this so the...

It would be great to also have a `Wrap` equivalent with a maximum number of row/column. ![image](https://user-images.githubusercontent.com/7687231/92397178-a525f180-f126-11ea-9a5b-5173011bf1f1.png)

enhancement

When wrapping the `OverflowView` into a `GestureDetector`, the `onTap` callback is never called when tapping on the widget. ```dart GestureDetector( onTap: () => print('Hit !'), // Never called child: OverflowView.flexible(...

Adds a new `reverse` parameter to OverflowView and OverflowView.flexible that allows overflow to occur from the start (left/top) instead of the end (right/bottom). Features: - Reverse mode trims from left...

[overflow_view_demo.webm](https://github.com/user-attachments/assets/ae7788c6-2b70-4bf4-a390-b52fa52b7365) This PR introduces Main and Cross Axis Alignments to the overflow view as well as a paramter to expand the initial child. This addresses #11 and serves the use...

Currently, the package only supports LTR view. Trying to change the directionality does nothing. Expected when directionality is rtl: - Children show from right to left - The overflow indicator...