v1.0.1carousel_nerdzlab
Benutzerdefiniertes PageView mit randständigen Elementen und zentrierter Ausrichtung
0Likes 2530-Tage-Downloads160Pub-Punkte
AndroidiOSWebmacOSWindowsLinux
Benutzerdefiniertes PageView mit randständigen Elementen und zentrierter Ausrichtung
{"sdk":"flutter"}{"sdk":"flutter"}^4.0.0Englischer Projektschnappschuss. Aktuelle Inhalte auf GitHub.
This package provides a custom implementation of the CenteredPageView widget that behaves like the default PageView, but with padEnds: false while centered elements, and an optional dot indicator.
Package CenteredPageView. Items snap to a centered position.
Centered PageView
Default PageView. Elements align based on scroll position but are not centered.
Default PageView
CenteredPageView widget that centers items while retaining the default properties of the PageView.CenteredPageView.Here's how to implement CenteredPageView in your Flutter app:
CenteredPageView.builder(
itemCount: 9,
controller: PageController(viewportFraction: 0.8),
showIndicator: true, // Set to 'false' if you do not want to display the dot indicator
indicatorStyle: const IndicatorStyle(
indicatorWidth: 100, unselectedSize: Size(8, 8)),
itemBuilder: (context, index) => Container(
width: MediaQuery.of(context).size.width,
margin: const EdgeInsets.symmetric(horizontal: 5.0),
padding: const EdgeInsets.symmetric(horizontal: 16),
decoration: const BoxDecoration(color: Colors.amber),
child: Align(
child: Text(
'Page $index',
style: const TextStyle(fontSize: 16.0),
),
)),
),
Customizing the Dot Indicator
showIndicator property is a boolean that controls the visibility of the dot indicator.indicatorStyle property allows you to customize the appearance of the dot indicator.