notebook_paper 0.0.4 copy "notebook_paper: ^0.0.4" to clipboard
notebook_paper: ^0.0.4 copied to clipboard

Craft beautiful notebook-like interfaces in Flutter with ease using Notebook Paper, a customizable widget package.

example/lib/main.dart

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

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        body: Center(
          child: Container(
            padding: EdgeInsets.all(16.0),
            child: const NotebookPaper(
              entireText: 'Hello, Notebook Paper!',
              title: 'My Notebook',
              fontSize: 20.0,
              rowHeight: 1.0,
              width: 0.8,
              paperColor: Color.fromARGB(255, 253, 248, 184),
              horizontalLinesColor: Colors.blue,
              verticalLinesColor: Colors.pink,
              pageTitle: true,
            ),
          ),
        ),
      ),
    );
  }
}
4
likes
160
pub points
65%
popularity

Publisher

unverified uploader

Craft beautiful notebook-like interfaces in Flutter with ease using Notebook Paper, a customizable widget package.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on notebook_paper