{"id":32294335,"url":"https://github.com/cosee/responsive_notebook_background","last_synced_at":"2026-02-23T19:05:57.469Z","repository":{"id":61974263,"uuid":"459514352","full_name":"cosee/responsive_notebook_background","owner":"cosee","description":"Flutter package. A notebook background which is responsive to the system text size settings.","archived":false,"fork":false,"pushed_at":"2026-02-16T01:35:21.000Z","size":66259,"stargazers_count":1,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-02-16T08:53:15.953Z","etag":null,"topics":["dart","flutter","notebook","package","responsive","ui-components"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cosee.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-02-15T09:39:15.000Z","updated_at":"2026-02-16T01:35:24.000Z","dependencies_parsed_at":"2026-01-19T10:02:12.859Z","dependency_job_id":null,"html_url":"https://github.com/cosee/responsive_notebook_background","commit_stats":{"total_commits":43,"total_committers":3,"mean_commits":"14.333333333333334","dds":0.4651162790697675,"last_synced_commit":"ceacdac64f3349d348f248bf9335061460e92655"},"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/cosee/responsive_notebook_background","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cosee%2Fresponsive_notebook_background","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cosee%2Fresponsive_notebook_background/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cosee%2Fresponsive_notebook_background/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cosee%2Fresponsive_notebook_background/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cosee","download_url":"https://codeload.github.com/cosee/responsive_notebook_background/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cosee%2Fresponsive_notebook_background/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29751860,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-23T07:44:07.782Z","status":"ssl_error","status_checked_at":"2026-02-23T07:44:07.432Z","response_time":90,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dart","flutter","notebook","package","responsive","ui-components"],"created_at":"2025-10-23T03:43:29.644Z","updated_at":"2026-02-23T19:05:57.464Z","avatar_url":"https://github.com/cosee.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Responsive Notebook Background\n[![pub package][pub_badge]][pub_badge_link]\n[![package publisher][publisher_badge]][publisher_badge_link]\n[![style][style_badge]][style_link]\n[![license][license_badge]][license_link]\n\nA notebook background which is responsive to the system text size settings.\n\n![Preview example](example/screenshots/example.webp \"Example\")\n\n## Features\n\n- Easy to use\n- Customizable line thickness\n- Customizable line color\n- Customizable background color\n- Line- and Grid-Layout\n- Possibility to leave blank lines on top of content\n- Included LineSizeBuilder to determine the height of a single line of text\n\n## Usage\n\nDepend on it:\n\n```yaml\ndependencies:\n  responsive_notebook_background: ^1.0.0\n```\n\nImport it:\n\n```dart\nimport 'package:responsive_notebook_background/responsive_notebook_background.dart';\n```\n\nExample:\n\n```dart\nconst ResponsiveNotebookBackground(\n    options: ResponsiveNotebookBackgroundOptions(),\n    child: Text('Lorem ipsum dolor sit amet.'),\n);\n```\n\n## Customization options\n\n```dart\nstatic const TextStyle _textStyle = TextStyle(\n    fontSize: 18,\n    fontWeight: FontWeight.w500,\n    color: Colors.brown,\n);\n\nconst ResponsiveNotebookBackground(\n    options: ResponsiveNotebookBackgroundOptions(\n      blankLines: 2,\n      horizontalPadding: 20,\n      lineWidth: 2.5,\n      backgroundColor: Colors.black12,\n      lineColor: Colors.blueAccent,\n      lineType: LineType.line,\n      styleForHeightCalculation: _textStyle,\n    ),\n    child: Text(\n      'Lorem ipsum dolor sit amet.',\n      style: _textStyle,\n    ),\n);\n```\n[publisher_badge]: https://img.shields.io/pub/publisher/responsive_notebook_background.svg\n\n[publisher_badge_link]: https://pub.dev/publishers/cosee.biz/packages\n\n[license_badge]: https://img.shields.io/github/license/cosee/responsive_notebook_background\n\n[license_link]: https://github.com/cosee/responsive_notebook_background/blob/main/LICENSE\n\n[style_badge]: https://img.shields.io/badge/style-cosee__lints-brightgreen\n\n[style_link]: https://pub.dev/packages/cosee_lints\n\n[pub_badge]: https://img.shields.io/pub/v/responsive_notebook_background.svg\n\n[pub_badge_link]: https://pub.dartlang.org/packages/responsive_notebook_background","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcosee%2Fresponsive_notebook_background","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcosee%2Fresponsive_notebook_background","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcosee%2Fresponsive_notebook_background/lists"}