diff --git a/lib/Screens/Slider/slider_view.dart b/lib/Screens/Slider/slider_view.dart index 2f77053..7442789 100644 --- a/lib/Screens/Slider/slider_view.dart +++ b/lib/Screens/Slider/slider_view.dart @@ -209,9 +209,9 @@ class _SliderViewWidget extends State { ), if(sliderDTO.images != null && sliderDTO.images.length > 0) Padding( - padding: const EdgeInsets.only(bottom: 0), + padding: widget.section.parentId == null ? EdgeInsets.only() : const EdgeInsets.only(left: 15, bottom: 10), child: Align( - alignment: Alignment.bottomCenter, + alignment: widget.section.parentId == null ? Alignment.bottomCenter : Alignment.bottomLeft, child: InkWell( onTap: () { sliderController.previousPage(duration: new Duration(milliseconds: 500), curve: Curves.fastOutSlowIn);