stories 0.1.1 copy "stories: ^0.1.1" to clipboard
stories: ^0.1.1 copied to clipboard

A new Flutter package for implementing instagram like stories.

stories #

A new Flutter package for implementing instagram like stories.

Getting Started #

Including package in project #

Screenshot of dependency addition

to include just add it to the dependency like in the above picture

Using the widget in your project #

Screenshot of implementation

Include these two dependencies at the beginnin of the file say "main.dart"

import 'package:stories/models/story.dart';
import 'package:stories/stories.dart';

body: StoriesWidget(
        "https://upload.wikimedia.org/wikipedia/commons/thumb/b/b6/Image_created_with_a_mobile_phone.png/330px-Image_created_with_a_mobile_phone.png",
        "Sourav Mandal",
        "time",
        getStories(),
    ),


StoriesWidget{
    arg1 : url of the profile pic of the user or brand
    arg2 : name of the user or brand
    arg3 : time of the status
    arg4 : list of stories that are instance of a class "Story" present in the package
}

Below is an example method to generate dummy stories

List<Story> getStories() {
    List<Story> stories = new List();

    for (int i = 0; i < 10; i++) {
        stories.add(
        new Story(
            "https://upload.wikimedia.org/wikipedia/commons/thumb/b/b6/Image_created_with_a_mobile_phone.png/330px-Image_created_with_a_mobile_phone.png",
            "Caption",
        ),
        );
    }

    return stories;
}
4
likes
40
pub points
37%
popularity

Publisher

unverified uploader

A new Flutter package for implementing instagram like stories.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

carousel_slider, flutter

More

Packages that depend on stories