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

outdated

A package to create an article style page.

example/example.dart

import 'package:article/article.dart';
import 'package:flutter/material.dart';

class Example extends StatelessWidget {
  const Example({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        body: ListView(
          children: [
            Article(
                header: H(
                  text: "Title of the article.",
                ),
                body: Column(
                  children: [
                    P(
                      text: "Body elements.",
                    ),
                  ],
                ),
                footer: P(
                  text: "Footer element.",
                ))
          ],
        ),
      ),
    );
  }
}
1
likes
0
pub points
34%
popularity

Publisher

unverified uploader

A package to create an article style page.

License

unknown (license)

Dependencies

flutter

More

Packages that depend on article