a simple control to display scrolling overflow content!
Platform | Support |
---|---|
Xamarin.Forms | ✔ |
.NET MAUI | ✔ |
OverFlower is available on NuGet and GitHub
https://www.nuget.org/packages/OverFlower https://github.com/nor0x/OverFlower/packages
Start by adding a the XAML namespace xmlns:over="clr-namespace:OverFlower;assembly=OverFlower"
and use it like this:
<over:OverFlower
ImageSource="yourimage.png"
ImageWidth="2500"
ImageHeight="1000"
ScrollDirection="Left"
ScrollDuration="20000" />
is a regular .NET MAUI / Xamarin.Forms ImageSource and
width of the overflow image
height of the overflow image
scrolling direction of the overflow image
duration of the scrolling operation (in milliseconds)
toggle if animation should run indefinitely or reverse after reaching the end
SampleMaui includes a playground & demo of the control
feel free to create issues and PRs 👋