{"id":13684575,"url":"https://github.com/glitchedmob/flutter_multiple_stream_builder","last_synced_at":"2026-02-19T23:37:17.948Z","repository":{"id":37654493,"uuid":"322379944","full_name":"glitchedmob/flutter_multiple_stream_builder","owner":"glitchedmob","description":null,"archived":false,"fork":false,"pushed_at":"2022-06-22T06:02:46.000Z","size":113,"stargazers_count":11,"open_issues_count":2,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-10-23T02:42:55.898Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://pub.dev/packages/multiple_stream_builder","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/glitchedmob.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":"2020-12-17T18:30:52.000Z","updated_at":"2024-01-22T18:47:49.000Z","dependencies_parsed_at":"2022-09-02T03:50:56.506Z","dependency_job_id":null,"html_url":"https://github.com/glitchedmob/flutter_multiple_stream_builder","commit_stats":null,"previous_names":[],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/glitchedmob/flutter_multiple_stream_builder","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/glitchedmob%2Fflutter_multiple_stream_builder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/glitchedmob%2Fflutter_multiple_stream_builder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/glitchedmob%2Fflutter_multiple_stream_builder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/glitchedmob%2Fflutter_multiple_stream_builder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/glitchedmob","download_url":"https://codeload.github.com/glitchedmob/flutter_multiple_stream_builder/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/glitchedmob%2Fflutter_multiple_stream_builder/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29636616,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-19T22:32:43.237Z","status":"ssl_error","status_checked_at":"2026-02-19T22:32:38.330Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":[],"created_at":"2024-08-02T14:00:35.096Z","updated_at":"2026-02-19T23:37:17.908Z","avatar_url":"https://github.com/glitchedmob.png","language":"Dart","readme":"# multiple_stream_builder\n\nFlutter widgets to replace multiple nested StreamBuilder widgets\n\n## Installing\nTo add use this package in your Flutter project add this to your `pubspec.yml`\n```yml\ndependencies:\n  multiple_stream_builder: ^3.0.0\n```\n\n## Usage example\n\n```dart\nvar stream1 = Stream\u003cint\u003e.periodic(Duration(seconds: 1), (x) =\u003e x);\nvar stream2 = Stream\u003cint\u003e.periodic(Duration(seconds: 2), (x) =\u003e x);\nvar stream3 = Stream\u003cint\u003e.periodic(Duration(seconds: 3), (x) =\u003e x);\n\n// Instead of writing out nested StreamBuilders\nWidget build(BuildContext context) {\n  return StreamBuilder\u003cint\u003e(\n    stream: stream1,\n    initialData: 0,\n    builder: (context, snapshot1) {\n      return StreamBuilder\u003cint\u003e(\n        stream: stream2,\n        initialData: 0,\n        builder: (context, snapshot2) {\n          return StreamBuilder\u003cint\u003e(\n            stream: stream3,\n            initialData: 0,\n            builder: (context, snapshot3) {\n              return Text(\n                'stream1: ${snapshot1.data} - stream2: ${snapshot2.data} - stream3: ${snapshot3.data}',\n              );\n            },\n          );\n        },\n      );\n    },\n  );\n}\n\n// Pass multiple streams into a single StreamBuilder\nWidget build(BuildContext context) {\n  return StreamBuilder3\u003cint, int, int\u003e(\n    streams: StreamTuple3(stream1, stream2, stream3),\n    initialData: InitialDataTuple3(0, 0, 0),\n    builder: (context, snapshots) {\n      return Text(\n        'stream1: ${snapshots.snapshot1.data} - stream2: ${snapshots.snapshot2.data} - stream3: ${snapshots.snapshot3.data}',\n      );\n    },\n  );\n}\n```\n","funding_links":[],"categories":["Dart"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fglitchedmob%2Fflutter_multiple_stream_builder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fglitchedmob%2Fflutter_multiple_stream_builder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fglitchedmob%2Fflutter_multiple_stream_builder/lists"}