{"id":17988216,"url":"https://github.com/program-spiritual/dart2-in-action","last_synced_at":"2026-04-21T16:40:20.620Z","repository":{"id":112520894,"uuid":"170526562","full_name":"program-spiritual/dart2-in-action","owner":"program-spiritual","description":"Dart Programming Tutorial in action","archived":false,"fork":false,"pushed_at":"2019-02-20T03:30:47.000Z","size":48,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-06-15T10:52:16.158Z","etag":null,"topics":["dart","dart-in-action","dart-library","dart2","darts","flutter","flutter-go"],"latest_commit_sha":null,"homepage":null,"language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/program-spiritual.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2019-02-13T15:00:28.000Z","updated_at":"2020-03-07T01:32:05.000Z","dependencies_parsed_at":"2023-05-15T14:15:36.891Z","dependency_job_id":null,"html_url":"https://github.com/program-spiritual/dart2-in-action","commit_stats":null,"previous_names":["yiyandaoren/dart2-in-action","program-spiritual/dart2-in-action"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/program-spiritual/dart2-in-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/program-spiritual%2Fdart2-in-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/program-spiritual%2Fdart2-in-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/program-spiritual%2Fdart2-in-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/program-spiritual%2Fdart2-in-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/program-spiritual","download_url":"https://codeload.github.com/program-spiritual/dart2-in-action/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/program-spiritual%2Fdart2-in-action/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32100998,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-21T11:25:29.218Z","status":"ssl_error","status_checked_at":"2026-04-21T11:25:28.499Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["dart","dart-in-action","dart-library","dart2","darts","flutter","flutter-go"],"created_at":"2024-10-29T19:11:02.318Z","updated_at":"2026-04-21T16:40:20.561Z","avatar_url":"https://github.com/program-spiritual.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"## dart2-in-action(dart2硬实战)\n### 实例说明\n\n1. 实例代码均在` *.dart` 格式的文件中\n2. 每个文件均有**说明**\n3. 看完之后即可入门 [`flutter` ](https://flutter.io/)\n## 传送门\n4. [flutter Demo (阿里巴巴团队提供)](https://github.com/alibaba/flutter-go)\n5.  [flutter go 开发规范](https://github.com/alibaba/flutter-go/blob/master/Flutter_Go%20%E4%BB%A3%E7%A0%81%E5%BC%80%E5%8F%91%E8%A7%84%E8%8C%83.md)\n6. [flutter中文社区 ](https://flutter-io.cn/)\n7. [flutter 国内加速方法](https://github.com/xiaomiwujiecao/geek-thickink/issues/39)\n\n 欢迎拍砖 😁 欢迎star\n\n## 目录\n1. [hello world](./bin/dart2-in-action.dart)\n2. [object-oriented programming （面向对象）](./example/object_orientation.dart)\n3. [data types（数据类型）](./example/data_types.dart)\n4. [operator （操作符）](./example/operator.dart)\n5. [variables （变量）](./example/variables.dart)\n6. [decision （条件判断）](./example/decision.dart)\n7. [number （数字）](./example/number.dart)\n8. [string （字符串）](./example/string.dart)\n9. [boolean （布尔类型）](./example/boolean.dart)\n10. [lists （列表）](./example/lists.dart)\n11. [lists-basic-operation （列表基础操作）](./example/lists_basic_operation.dart)\n12. [symbol （符号）](./example/FooSymbol.dart)\n13. [runes （特殊符号）](./example/runes.dart)\n14. [enumeration （枚举类型）](./example/enumeration.dart)\n15. [function （函数）](./example/function.dart)\n16. [interface （接口）](./example/interface.dart)\n17. [class （类）](./example/class.dart)\n18. [object （对象）](./example/oo.dart)\n19. [generics （泛型）](./example/generics.dart)\n20. [package （包）](./example/package.dart)\n21. [debug (调试)](./example/debug.md)\n22. [typedef (类型)](./example/typedef.dart)\n23. [library (库)](./example/library.dart)\n24. [async (异步)](./example/async.dart)\n25. [concurrency (并发)](./example/concurrency.dart)\n26. [unit_test (单元测试)](./example/unit_test.dart)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprogram-spiritual%2Fdart2-in-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprogram-spiritual%2Fdart2-in-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprogram-spiritual%2Fdart2-in-action/lists"}