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

outdated

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 #

Header as H, Paragraph as P, Sourcecode and much more.

Getting started #

Explore the usage section.

Usage #

P(text: "Use this to make a paragraph."),
H(text: "Use this to make a header."),
Section(
    child: Column(
        children: [
        H(
            text: "Header 1.",
        ),
        P(
            text: "Body 1.",
        ),
        //Add more Widgets.
        ],
    ),
),
Article(
    header: H(
    text: "Title of the article.",
    ),
    body: Column(
    children: [
        Section(
        child: Column(
            children: [
            H(
                text: "Header 1.",
            ),
            P(
                text: "Body 1.",
            ),
            //Add more Widgets.
            ],
        ),
        ),
        Section(
        child: Column(
            children: [
            H(
                text: "Header 2.",
            ),
            P(
                text: "Body 2.",
            ),
            //Add more widgets.
            ],
        ),
        )
    ],
    ),
    footer: P(
    text: "Footer element.",
    ),
),

Additional information #

Do not leave without leaving a like.

1
likes
0
pub points
36%
popularity

Publisher

unverified uploader

A package to create an article style page.

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on article