{"id":19598324,"url":"https://github.com/dotupnet/dotup_flutter_adaptive","last_synced_at":"2026-05-14T11:35:33.187Z","repository":{"id":193461191,"uuid":"688860545","full_name":"dotupNET/dotup_flutter_adaptive","owner":"dotupNET","description":null,"archived":false,"fork":false,"pushed_at":"2024-04-06T09:53:12.000Z","size":301,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-11-21T11:25:38.239Z","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":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dotupNET.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-09-08T08:58:36.000Z","updated_at":"2024-11-07T08:26:43.000Z","dependencies_parsed_at":"2024-03-29T12:48:54.399Z","dependency_job_id":null,"html_url":"https://github.com/dotupNET/dotup_flutter_adaptive","commit_stats":null,"previous_names":["dotupnet/dotup_flutter_adaptive"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dotupNET/dotup_flutter_adaptive","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotupNET%2Fdotup_flutter_adaptive","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotupNET%2Fdotup_flutter_adaptive/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotupNET%2Fdotup_flutter_adaptive/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotupNET%2Fdotup_flutter_adaptive/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dotupNET","download_url":"https://codeload.github.com/dotupNET/dotup_flutter_adaptive/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotupNET%2Fdotup_flutter_adaptive/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32973388,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T06:31:55.726Z","status":"ssl_error","status_checked_at":"2026-05-13T06:31:51.336Z","response_time":115,"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":[],"created_at":"2024-11-11T09:05:48.285Z","updated_at":"2026-05-14T11:35:33.172Z","avatar_url":"https://github.com/dotupNET.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"![flutter](https://badgen.net/pub/flutter-platform/xml) [![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0) ![forks](https://badgen.net/github/forks/dotupNET/dotup_flutter_adaptive/) ![stars](https://badgen.net/github/stars/dotupNET/dotup_flutter_adaptive/)\n\n# dotup_flutter_adaptive\n\nSmall package to develop adaptive and responive UIs based on device, platform or screen size.\n\nhttps://docs.flutter.dev/ui/layout/responsive/adaptive-responsive\n\n## Easy usage\n\n```dart\n// Powered by https://dotup.de\n// Copyright (c) 2021, dotup IT solutions - Peter Ullrich\n\n\nmain(List\u003cString\u003e args) {\n  runApp(const MyApp());\n}\n\nclass MyApp extends StatelessWidget {\n  const MyApp({Key? key}) : super(key: key);\n\n  @override\n  Widget build(BuildContext context) {\n    return MaterialApp(\n      home: Scaffold(\n        body: Center(\n          child: PlatformQuery(\n            child: PlatformWidget(\n              fallback: const FallbackWidget(),\n              windows: DeviceQuery(\n                context: context,\n                child: const DeviceWidget(\n                  desktop: DesktopWidget(),\n                  fallback: FallbackWidget(),\n                ),\n              ),\n              web: const Text('web'),\n            ),\n          ),\n        ),\n      ),\n    );\n  }\n}\n\nclass WindwosWidget extends StatelessWidget {\n  const WindwosWidget({\n    Key? key,\n  }) : super(key: key);\n\n  @override\n  Widget build(BuildContext context) {\n    return const Text('Windows');\n  }\n}\n\nclass FallbackWidget extends StatelessWidget {\n  const FallbackWidget({\n    Key? key,\n  }) : super(key: key);\n\n  @override\n  Widget build(BuildContext context) {\n    return const Text('Fallback');\n  }\n}\n\nclass DesktopWidget extends StatelessWidget {\n  const DesktopWidget({\n    Key? key,\n  }) : super(key: key);\n\n  @override\n  Widget build(BuildContext context) {\n    return const Text('DesktopWidget');\n  }\n}\n\n\n```\n\n## Install\n`flutter pub add dotup_flutter_adaptive`\n\n## Links\n\n\u003e ### dotup_flutter_adaptive on [pub.dev](https://pub.dev/packages/dotup_flutter_adaptive)\n\u003e\n\u003e ### Other widgets on [pub.dev](https://pub.dev/packages?q=dotup)\n\u003e \n\u003e ### Other open source flutter projects on [Github](https://github.com/search?q=dotup_flutter)\n\u003e \n\u003e ### Other open source dart projects on [Github](https://github.com/search?q=dotup_dart)\n\n\n# Flutter simulator | DFFP3\n\u003e Go to [https://flutter-apps.ml](https://flutter-apps.ml) and check out the awesome flutter simulator !\n\n![Flutter simulator](https://flutter-apps.ml/wp-content/uploads/2021/10/Bildschirmfoto-2021-10-31-um-11.34.42-2048x1335.png)\n\n\u003e ## [dotup IT solutions](https://dotup.de)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdotupnet%2Fdotup_flutter_adaptive","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdotupnet%2Fdotup_flutter_adaptive","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdotupnet%2Fdotup_flutter_adaptive/lists"}