├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── example └── main.dart ├── lib ├── blank_notebook_page.dart ├── flutter_notebook_page.dart └── notebook_item.dart ├── preview └── preview.png ├── pubspec.lock ├── pubspec.yaml └── test └── flutter_notebook_page_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkeshdarji/flutter_notebook_page/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkeshdarji/flutter_notebook_page/HEAD/.metadata -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkeshdarji/flutter_notebook_page/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkeshdarji/flutter_notebook_page/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkeshdarji/flutter_notebook_page/HEAD/README.md -------------------------------------------------------------------------------- /example/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkeshdarji/flutter_notebook_page/HEAD/example/main.dart -------------------------------------------------------------------------------- /lib/blank_notebook_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkeshdarji/flutter_notebook_page/HEAD/lib/blank_notebook_page.dart -------------------------------------------------------------------------------- /lib/flutter_notebook_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkeshdarji/flutter_notebook_page/HEAD/lib/flutter_notebook_page.dart -------------------------------------------------------------------------------- /lib/notebook_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkeshdarji/flutter_notebook_page/HEAD/lib/notebook_item.dart -------------------------------------------------------------------------------- /preview/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkeshdarji/flutter_notebook_page/HEAD/preview/preview.png -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkeshdarji/flutter_notebook_page/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkeshdarji/flutter_notebook_page/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/flutter_notebook_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkeshdarji/flutter_notebook_page/HEAD/test/flutter_notebook_page_test.dart --------------------------------------------------------------------------------