article 0.0.14 copy "article: ^0.0.14" to clipboard
article: ^0.0.14 copied to clipboard

A package to create an article style page.

Are you a blogger?

YES: You probably will love this package. NO: You should try first.

Features #

Headers as H1, H2, H3, H4, H5 and H6. Paragraph as P. Article, Section and much more.

Getting started #

Explore the usage section.

Usage #

P(child: "Use this to make a paragraph."),
H1(child: "Use this to make a header."),
H2(child: "Use this to make a header."),
H3(child: "Use this to make a header."),
H4(child: "Use this to make a header."),
H5(child: "Use this to make a header."),
H6(child: "Use this to make a header."),
Section(
    child: Column(
        children: [
        H1(
            child: "Header 1.",
        ),
        P(
            child: "Body 1.",
        ),
        //Add more Widgets.
        ],
    ),
),
Article(
    maxWidth: 800,
    header: H3(
    child: "Title of the article.",
    ),
    body: Column(
    children: [
        Section(
        child: Column(
            children: [
            H5(
                child: "Header 1.",
            ),
            P(
                child: "Body 1.",
            ),
            //Other Widgets.
            ],
        ),
        ),
        Section(
        child: Column(
            children: [
            H5(
                child: "Header 2.",
            ),
            P(
                child: "Body 2.",
            ),
            ],
        ),
        )
    ],
    ),
    footer: P(
    child: "Footer element.",
    ),
),

Additional information #

Do not leave without leaving a like.

1
likes
150
pub points
36%
popularity

Publisher

unverified uploader

A package to create an article style page.

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on article