{"id":25234145,"url":"https://github.com/elias8/uxd","last_synced_at":"2026-04-15T18:31:46.079Z","repository":{"id":37988314,"uuid":"451627355","full_name":"elias8/uxd","owner":"elias8","description":"Building Adobe XD clone with Flutter.","archived":false,"fork":false,"pushed_at":"2022-06-13T00:01:04.000Z","size":6158,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-05T17:14:52.342Z","etag":null,"topics":["bloc","dart","design","flutter","tool"],"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/elias8.png","metadata":{"files":{"readme":"README.md","changelog":null,"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-01-24T20:45:47.000Z","updated_at":"2024-07-01T10:17:39.000Z","dependencies_parsed_at":"2022-09-06T19:21:42.323Z","dependency_job_id":null,"html_url":"https://github.com/elias8/uxd","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/elias8/uxd","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elias8%2Fuxd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elias8%2Fuxd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elias8%2Fuxd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elias8%2Fuxd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/elias8","download_url":"https://codeload.github.com/elias8/uxd/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elias8%2Fuxd/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31854680,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-15T15:24:51.572Z","status":"ssl_error","status_checked_at":"2026-04-15T15:24:39.138Z","response_time":63,"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":["bloc","dart","design","flutter","tool"],"created_at":"2025-02-11T13:58:44.778Z","updated_at":"2026-04-15T18:31:46.061Z","avatar_url":"https://github.com/elias8.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# UXD\n\n[![codecov](https://codecov.io/gh/Elias8/UXD/branch/main/graph/badge.svg?token=hl5feg6dAk)](https://codecov.io/gh/Elias8/UXD)\n\nA User Experience Design tool built with flutter.\n\n## Getting Started\n\nThis project is a starting point for a Flutter application.\n\nA few resources to get you started if this is your first Flutter project:\n\n- [Lab: Write your first Flutter app](https://flutter.dev/docs/get-started/codelab)\n- [Cookbook: Useful Flutter samples](https://flutter.dev/docs/cookbook)\n\nFor help getting started with Flutter, view our\n[online documentation](https://flutter.dev/docs), which offers tutorials, samples, guidance on mobile development, and a\nfull API reference.\n\n---\n\n## Working with Translations\n\nThis project relies on [flutter_localizations][flutter_localizations_link] and follows\nthe [official internationalization guide for Flutter][internationalization_link].\n\n### Adding Strings\n\n1. To add a new localized string, open the `app_en.arb` file at `lib/config/l10n/arb/app_en.arb`.\n\n```arb\n{\n  \"@@locale\": \"en\",\n  \"appName\": \"UXD\",\n  \"@appName\": {\n    \"description\": \"The application name\"\n  }\n}\n```\n\n2. Then add a new key/value and description\n\n```arb\n{\n  \"@@locale\": \"en\",\n  \"appName\": \"UXD\",\n  \"@appName\": {\n    \"description\": \"The application name\"\n  },\n  \"toolbar\": \"Toolbar\",\n  \"@albums\": {\n    \"description\": \"Text shown on the toolbar widget\"\n  },\n}\n```\n\n3. Use the new string\n\n```dart\nimport 'package:uxd/l10n/l10n.dart';\n\n@override\nWidget build(BuildContext context) {\n  final l10n = context.l10n;\n  return Text(l10n.albums);\n}\n```\n\n### Adding Supported Locales\n\nUpdate the `CFBundleLocalizations` array in the `Info.plist` at `macos/Runner/Info.plist` to include the new locale.\n\n```xml\n    ...\n\n\u003ckey\u003eCFBundleLocalizations\u003c/key\u003e\n\u003carray\u003e\n\u003cstring\u003een\u003c/string\u003e\n\u003cstring\u003eam\u003c/string\u003e\n\u003c/array\u003e\n\n        ...\n```\n\n### Adding Translations\n\n1. For each supported locale, add a new ARB file in `lib/l10n/arb`.\n\n```\n├── l10n\n│   ├── arb\n│   │   ├── app_en.arb\n│   │   └── app_am.arb\n```\n\n2. Add the translated strings to each `.arb` file:\n\n`app_en.arb`\n\n```arb\n{\n  \"@@locale\": \"en\",\n  \"appName\": \"UXD\",\n  \"@appName\": {\n    \"description\": \"The application name\"\n  },\n}\n```\n\n`app_am.arb`\n\n```arb\n{\n  \"@@locale\": \"am\",\n  \"appName\": \"UXD\",\n  \"@appName\": {\n    \"description\": \"የመተግበሪያ ስም\"\n  },\n}\n```\n\n[flutter_localizations_link]: https://api.flutter.dev/flutter/flutter_localizations/flutter_localizations-library.html\n\n[internationalization_link]: https://flutter.dev/docs/development/accessibility-and-localization/internationalization\n\n[lcov_link]: https://github.com/linux-test-project/lcov\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felias8%2Fuxd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Felias8%2Fuxd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felias8%2Fuxd/lists"}