Questions tagged [carousel-slider]
36 questions
0
votes
1 answer
Flutter Dynamic list in Carousel Slider item
I have a dynamic list image from the server and I want to push them in Carousel Slider.
but when I've added them in the item, and run, I've got this error :
Class 'String' has no instance method 'map'.
Tried calling: map(Closure: (dynamic) =>…
user16886755
0
votes
2 answers
How to make the center of carousel slider bigger than the others?
I want to make the center Carousel Bigger than the others
CarouselSlider(
items: generateImageTiles(),
options: CarouselOptions(
enlargeCenterPage: true,
aspectRatio: 16 / 5,
viewportFraction: 0.4,
…

alpharat
- 1
- 1
0
votes
0 answers
Loading local images with the carousel_slider Flutter package
I'm a beginner in Flutter and I'm using Flutter (null safety version) for my app with carousel_slider 4.0.0, slider worked but, I want to know how to load local images with this slider. Any idea?
Thanks
import 'package:flutter/material.dart';
…

core114
- 5,155
- 16
- 92
- 189
0
votes
0 answers
How to change the items from carousel_slider with some trigger / action in Flutter?
I'm having trouble replacing a set of images in the carousel_slider with an action / trigger like onAccept() in my code
I currently using a draggable the slider, and my goal is I want to change the set of images when I'm dragging the image into the…

Rio Ramadhan
- 17
- 5
-1
votes
1 answer
how to get iamge from diffrent data api in flutter like this
I have my model for json, service to get api
I just dont know how to get image like this like this
from this json from this
the Ipone Mega is the carousel slider(4 images in json link), below the other is just column
if you could show it in carousel…

Edgar A8
- 3
- 3
-2
votes
2 answers
How can i put Dot Indicator above Carousel slider in flutter,i tried with stack to position it above the carousel image but its not working
Stack(children: [
CarouselSlider.builder(
carouselController: controller,
itemCount: images.length,
itemBuilder: (context, index, realIndex) {
final image = images[index];
…

Adi
- 5
- 1
- 3