Giter Club home page Giter Club logo

scrollytell's Introduction


โœจ Scrollytell Flutter

platform License: MIT By-MDG

A flutter package to implement ScrollyTelling in your flutter app. Using ScrollyTell you can have the background changing dynamically as you scroll. ScrollyTell provides a mechanism to fully control this behaviour. Visit our medium blog.

๐ŸŽ– Installing

dependencies:
  scrollytell: ^1.0.4

โšก๏ธ Import

import 'package:scrollytell/scrollytell.dart';

Props

props type default value Description
panels (required) List Widget A list of panel widgets
panelStartCallback Function(num, Function) Called on start of new panel
panelEndCallback Function(num, Function) Called on end of existing panel
panelProgressCallback Function(num, double, Function) Called every frame
opacity double 1 Set opacity of the panels
lastPanelForceComplete bool false Set true if the last panel hits bottom of the screen and can't be scrolled through
initialOverlayWidget Widget none Overlay widget before start of scrolling
guidelinePosition GuidelinePosition GuidelinePosition.top Set position of guideline
stickyChartIndex int null The panel of corresponding index will dock at center when scrolled past the center
showDebugConsole bool false show debug console (activePanelIndex, progress) and debug line (guideline)

At least one of the panelStartCallback, panelProgressCallback, panelEndCallback must be non-null.

Terminology and Explanation

Panel

Panel is a widget. The list of panels form a scrolling sequence. In simple words, each panel is widget that remains in foreground while scrolling.

OverlayWidget

The overlay widget is what you want to be dynamically changed as you scroll. For example: In a simple story telling app, the panel will consist of a text portion of the story, while the OverlayWidget shows a corresponding graphic.

guideline

Guideline is an imaginary reference line. When the panel's top coincide with the guideline we say panel has been 'started' or the panel is 'active' and panelStartCallback is called. Similarily when panel's bottom touch guideline we say panel is ended andpanelEndCallback is called. You can choose the guidelinePosition to be either at ScrollyWidget's top, center, bottom.

activePanelIndex

An integer value corresponding to the panel that is "active"(coincides with the guideline).

progress (0,1)

A double value that depicts how much the panel has been scrolled past the guideline. For example: When the center of panel reaches guideline progress is half.

๐ŸŽฎ How To Use

Declare a List of Widgets

List<Widget> panelList = [Text('Hello Scrollytell'), Text('Hello Flutter')];

Declare an Overlay Widget

Widget overlayWidget;

Declare a ScrollyWidget

Widget _scrollyWidget = ScrollyWidget(
		   showDebugConsole: true,
  	           guidelinePosition: GuidelinePosition.center,
                   panels: panelList,
                   panelStartCallback: (activePanelNumber, func){},
                   panelEndCallback: (endingPanelNumber, func){},
                   panelProgressCallback: (activePanelNumber, progress, func){
    
                // set properties of overlay widget using activePanelNumber and progress
        
                       double rad = (progress <= 0.5) ? progress * 200 : 200 - progress * 200;
                       overlayWidget = Center(
                           child: Container(
                               width: 200,
                               height: 200,
                               decoration: BoxDecoration(
                                   borderRadius: BorderRadius.all(
                                       Radius.circular(rad),
                                   ),
                               color: Colors.red,
                               ),
                           ),
                       );
        
                // then pass it into the function
        
                       func(overlayWidget)
                   },
               )

Now Wrap it in either Expanded, Flexible or Container

Option 1 : Wrap in Expanded for covering the remaining screen.

Expanded(child: _scrollyWidget)

Option 2 : Wrap in Flexible

Flexible(child: _scrollyWidget)

Option 3 : Wrap in container to give it desired size.

Container(height: 500, width: 300, child: _scrollyWidget)

OR Use it directly as body of Scaffold.

Scaffold(body: _scrollyWidget)

For more info, refer to the basic_usage app in the example.

Some usage tips for beginners

Setting the overlay widget.

  • The overlayWidget will continue to be the one which was last set in the callback(s) unless you explicitly change it.
  • When you do not want to display anything at overlayWidget set it to be Container()

adding a "fake panel"

  • Sometimes you may want to include want to include containers at start (maybe a heading) and want it to scroll with your actual panels. The best option is to add it as a panel in the panelList and not manipulate the overlayWidget when activePanelIndex is 1.
  • A similar approach can be applied when you want include containers (like large empty spaces) in between you actual panels (like, text portions of story). Just include the container at the appropriate position in the panelList and not manipulate the overlayWidget when activePanelIndex is corresponding index.

๐Ÿš€ Showcase


๐Ÿ› Bugs/Requests

If you encounter any problems feel free to open an issue. If you feel the library is missing a feature, please raise a issue(label:enhancement) on Github and we will look into it. Pull requests are most welcome.

๐Ÿค Guidelines for Contributors

If you want to contribute to improve this library, please read our guidelines. Feel free to open an issue.

โญ๏ธ License

MIT License view license

This project draws inspiration from @google's Scrollytell.

scrollytell's People

Contributors

am15h avatar abhishek0706 avatar

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.