Coder Social home page Coder Social logo

Comments (3)

letsar avatar letsar commented on May 29, 2024 1

Yes you can totally do that! The only thing you have to change here it's the height of your container 😉 . It have to be bigger than the mainAxisExtent.

For example, the following code should work:

 Widget buildItem(BuildContext context, int index) {
    return new Parallax.inside(
      child: new Container(
        decoration: new BoxDecoration(
          image: new DecorationImage(
              image: new NetworkImage("https://flutter.io/images/homepage/header-illustration.png"),
              fit: BoxFit.cover),
        ),
        height: 300.0,
      ),
      mainAxisExtent: 150.0,
    );
  }

from flutter_parallax.

manujbahl avatar manujbahl commented on May 29, 2024

from flutter_parallax.

letsar avatar letsar commented on May 29, 2024

In the case of a SingleChildScrollView the Parallax.inside does not work (I think it's because the element position to the viewport does not seem to change).
You should use a CustomScrollView or a ListView in you case, like this:

Widget build(BuildContext context) {
    var app = new MaterialApp(
        home: new Container(
      color: const Color(0xFF00FF00),
      margin: new EdgeInsets.only(left: 15.0, right: 15.0, top: 50.0, bottom: 50.0),
      child: new ListView.builder(
        scrollDirection: Axis.vertical,
        itemBuilder: (c, i) => getImageBox(),
        itemCount: 7,
      ),
    ));
    return app;
  }

from flutter_parallax.

Related Issues (12)

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.