{"id":19044304,"url":"https://github.com/ronjb/float_column","last_synced_at":"2025-04-23T23:27:24.879Z","repository":{"id":61973273,"uuid":"355234430","full_name":"ronjb/float_column","owner":"ronjb","description":"Flutter FloatColumn widget for building a vertical column of widgets and text where the text wraps around floated widgets, similar to how CSS float works.","archived":false,"fork":false,"pushed_at":"2025-03-24T20:09:16.000Z","size":18694,"stargazers_count":26,"open_issues_count":0,"forks_count":7,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-18T07:52:04.004Z","etag":null,"topics":["css-float","drop-cap","flutter","flutter-package","widget"],"latest_commit_sha":null,"homepage":"","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ronjb.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"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}},"created_at":"2021-04-06T15:13:09.000Z","updated_at":"2025-04-12T15:23:49.000Z","dependencies_parsed_at":"2024-02-17T00:23:37.135Z","dependency_job_id":"dfc0f9ee-42d1-4a8f-b322-7d1c651835ff","html_url":"https://github.com/ronjb/float_column","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ronjb%2Ffloat_column","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ronjb%2Ffloat_column/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ronjb%2Ffloat_column/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ronjb%2Ffloat_column/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ronjb","download_url":"https://codeload.github.com/ronjb/float_column/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250530933,"owners_count":21445890,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["css-float","drop-cap","flutter","flutter-package","widget"],"created_at":"2024-11-08T22:45:44.657Z","updated_at":"2025-04-23T23:27:24.857Z","avatar_url":"https://github.com/ronjb.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# float_column\n\n[![Pub](https://img.shields.io/pub/v/float_column.svg)](https://pub.dev/packages/float_column)\n\nFlutter FloatColumn widget for building a vertical column of widgets and text where the text wraps around floated widgets, similar to how CSS float works.\n\nTry it out at: [https://ronjb.github.io/float_column](https://ronjb.github.io/float_column)\n\n## Example\n\nYou can use it for drop caps and so much more:\n\n![Example with left-to-right text](https://raw.githubusercontent.com/ronjb/float_column/main/example/example_ltr_v2.png)\n\n## Example with right-to-left text\n\n![Example with right-to-left text](https://raw.githubusercontent.com/ronjb/float_column/main/example/example_rtl.png)\n\n## FloatColumn widgets can be floated and nested\n\n![Example with nested FloatColumn widgets](https://raw.githubusercontent.com/ronjb/float_column/main/example/example_nested.png)\n\n## Getting Started\n\nAdd this to your app's `pubspec.yaml` file:\n\n```yaml\ndependencies:\n  float_column: ^4.0.1\n```\n\n## Usage\n\nThen you have to import the package with:\n\n```dart\nimport 'package:float_column/float_column.dart';\n```\n\nAnd use `FloatColumn` where appropriate. For example:\n\n```dart\nFloatColumn(\n  children: const [\n    Floatable(\n      float: FCFloat.start,\n      padding: EdgeInsets.only(right: 8),\n      child: _Box(Text('Box 1')),\n    ),\n    Floatable(\n      float: FCFloat.end,\n      clear: FCClear.both,\n      clearMinSpacing: 20,\n      padding: EdgeInsets.only(left: 8),\n      child: _Box(Text('Box 2')),\n    ),\n    WrappableText(text: 'This text will wrap around the floated widgets...'),\n  ],\n),\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fronjb%2Ffloat_column","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fronjb%2Ffloat_column","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fronjb%2Ffloat_column/lists"}