{"id":13683855,"url":"https://github.com/helightdev/stitched_stack","last_synced_at":"2025-03-16T02:16:36.921Z","repository":{"id":61975488,"uuid":"532707565","full_name":"helightdev/stitched_stack","owner":"helightdev","description":"A flutter library providing a way to stich a size-bound stack onto a widget","archived":false,"fork":false,"pushed_at":"2022-09-05T11:04:10.000Z","size":12,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-22T15:09:48.657Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/helightdev.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}},"created_at":"2022-09-05T01:46:51.000Z","updated_at":"2024-07-04T11:28:06.000Z","dependencies_parsed_at":"2022-10-24T13:45:42.781Z","dependency_job_id":null,"html_url":"https://github.com/helightdev/stitched_stack","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/helightdev%2Fstitched_stack","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/helightdev%2Fstitched_stack/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/helightdev%2Fstitched_stack/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/helightdev%2Fstitched_stack/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/helightdev","download_url":"https://codeload.github.com/helightdev/stitched_stack/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243814895,"owners_count":20352038,"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":[],"created_at":"2024-08-02T14:00:19.473Z","updated_at":"2025-03-16T02:16:36.875Z","avatar_url":"https://github.com/helightdev.png","language":"Dart","readme":"\u003ch1 align=\"center\"\u003e\n  \u003cbr\u003e\n  \u003cimg src=\"https://i.imgur.com/IcJForo.png\" alt=\"Stitched_Stack Logo\" width=\"256\"\u003e\n  \u003cbr\u003e\n  stitched_stack\n\u003c/h1\u003e\n\u003ch4 align=\"center\"\u003e\nA flutter library providing a way to stich a size-bound stack onto a widget.\n\u003c/h4\u003e\n\n## Features\nThis library exposes the `StitchedStack` widget, than can be used to\nstitch a stack onto a widget. The stacks size will be coupled to the\nsize of the stitched widget, which (mostly) behaves exactly like it would\nwithout the stack overlaying/underlaying it.\n\nThe stitched stack will by default automatically update its size if the\nchild grows or shrinks. This behaviour can be disabled by setting the\n`manual` property. The stitched stack will also respond to layout changes\nand rebuild completely. This behaviour can be disabled by providing fixed\n`constraints`.\n\n## Example\n\nThis simple example shows how to create a `TextField` with a stitched widget\nin the bottom-right corner. The `Container` will stay stitched at the corner,\neven if the `TextField` grows.\n\n```dart\nimport 'package:flutter/material.dart';\nimport 'package:stitched_stack/stitched_stack.dart';\n\nclass MyWidget extends StatelessWidget {\n\n  TextEditingController fieldController = TextEditingController();\n  \n  @override\n  Widget build(BuildContext context) {\n    return StitchedStack(\n      stitch: TextField(controller: fieldController, maxLines: 99, minLines: 1),\n      children: [\n        Positioned(bottom: 0, right: 0, child: Container(color: Colors.red, width: 50, height: 50))\n      ],\n    );\n  }\n}\n```\n\n![Screenshot](https://github.com/helightdev/helightdev/raw/main/Screenshot%202022-09-05%20034350.gif)","funding_links":[],"categories":["Dart"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhelightdev%2Fstitched_stack","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhelightdev%2Fstitched_stack","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhelightdev%2Fstitched_stack/lists"}