Add some padding so that the images don't collide with the info dots

This commit is contained in:
Roland Geider
2025-03-29 14:45:12 +01:00
parent 6d0d93bd8f
commit ef003c28ab

View File

@@ -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,
),
),
),
),