mirror of
https://github.com/wger-project/flutter.git
synced 2026-02-18 00:17:48 +01:00
Add some padding so that the images don't collide with the info dots
This commit is contained in:
@@ -388,9 +388,12 @@ class _CarouselImagesState extends State<CarouselImages> {
|
||||
),
|
||||
items: List.generate(
|
||||
widget.images.length,
|
||||
(index) => ExerciseImageWidget(
|
||||
image: widget.images[index],
|
||||
height: 250,
|
||||
(index) => Padding(
|
||||
padding: const EdgeInsets.only(top: 15),
|
||||
child: ExerciseImageWidget(
|
||||
image: widget.images[index],
|
||||
height: 260,
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user