Giter Club home page Giter Club logo

Comments (4)

red42 avatar red42 commented on May 27, 2024

I believe the width of the items is defined by the viewportFraction parameter. I am also looking for a way to have fixed-width items, but haven't figured out yet.

from flutter_carousel_slider.

red42 avatar red42 commented on May 27, 2024

I created PR that enables setting the width of each item: #28

This adds an itemWidth parameter that set the width of the items. If it's not set, the item takes the entire width defined by viewportFraction.

from flutter_carousel_slider.

joelbrostrom avatar joelbrostrom commented on May 27, 2024

I'm not sure what you want to do, but using the following code (your code with a few tweaks to make it work with the example project) lets me set the width to any value.
However, 500 is larger than most mobile screens.
Have you tried with a lower value?

final CarouselSlider testCarousel = CarouselSlider(
  viewportFraction: 1.0,
  items: imgList.map<Widget>(
    (url) {
      return Container(
        width: 200,
        margin: EdgeInsets.symmetric(horizontal: 0.0),
        decoration: BoxDecoration(
          color: Colors.amber,
          borderRadius: BorderRadius.circular(15.0),
          image: DecorationImage(image: NetworkImage(url), fit: BoxFit.cover),
        ),
      );
    },
  ).toList(),
);

This is the result:
width 200:
Screenshot 2019-03-18 at 17 27 39

width 300:
Screenshot 2019-03-18 at 17 28 25

Width 500:
Screenshot 2019-03-18 at 17 30 42

Widh 900:
Screenshot 2019-03-18 at 17 30 42

from flutter_carousel_slider.

serenader2014 avatar serenader2014 commented on May 27, 2024

I'm closing this issue, because it seems that the problem is solved. Feel free to reopen it if you still have some problems.

from flutter_carousel_slider.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.