https://github.com/flutteropen/design_patterns
用Flutter实现设计模式
https://github.com/flutteropen/design_patterns
Last synced: 2 months ago
JSON representation
用Flutter实现设计模式
- Host: GitHub
- URL: https://github.com/flutteropen/design_patterns
- Owner: FlutterOpen
- Created: 2020-03-15T20:04:21.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-04-16T03:26:35.000Z (about 5 years ago)
- Last Synced: 2025-04-14T09:12:29.083Z (2 months ago)
- Language: Dart
- Homepage:
- Size: 158 KB
- Stars: 16
- Watchers: 0
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Flutter 设计模式
主要是利用Flutter来实现各种设计模式,对设计模式的加深理解# 已实现
### 创造型模式
1. 工厂/抽象工厂模式
2. 单例模式
3. 建造者模式
4. 原型模式### 结构型模式
5. 适配器模式
6. 桥接模式
7. 过滤器/标准模式
8. 组合模式
9. 装饰者模式
10. 外观/门面模式
11. 享元模式
12. 代理模式### 行为型模式
13. 责任链模式
14. 命令模式
15. 解释器模式
16. 迭代器模式
17. 中介者模式
18. 备忘录模式
19. 观察者模式
20. 状态模式
21. 策略模式
22. 模版模式