v1.0.1carousel_nerdzlab
PageView personalizado com elementos de borda a borda e alinhamento centralizado
0Curtidas 25Downloads em 30 dias160Pontos Pub
AndroidiOSWebmacOSWindowsLinux
PageView personalizado com elementos de borda a borda e alinhamento centralizado
{"sdk":"flutter"}{"sdk":"flutter"}^4.0.0Texto original em inglês. Visite o GitHub para a versão atual.
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.