您將嘗試feature-driven開發。它幾乎與mvc相似。 ├── lib | ├── Feature │ │ ├── controller │ │ │ └── post_controller.dart | | | | | └── models | | | └── models.dart* | | | └── post.dart │ │ └── view │ │ | ├── posts_page.dart │ │ | └── posts_list.dart | | | └── view.dart* | | └── widgets | | | └── bottom_loader.dart | | | └── post_list_item.dart | | | └── widgets.dart* │ │ ├── posts.dart* │ ├── app.dart │ └── main.dart ├── pubspec.lock ├── pubspec.yaml 有關FFD的更多信息
您將嘗試feature-driven開發。它幾乎與mvc相似。
有關FFD的更多信息