Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 1.46 KB

README.md

File metadata and controls

39 lines (29 loc) · 1.46 KB

clean-code-Flutter/Dart

Clean Code concepts for Flutter/Dart.

Table of Contents

  1. Introduction
  2. SOLID
  3. Naming/Variable
  4. Coding Patterns
  5. Comments
  6. Formatting
  7. Error Handling
  8. Error Handling Flutter
  9. Testing
  10. Packages And Plugin
  11. Performance Best Practices

Introduction

Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.


Clean code is the one that is easy to understand and most importantly easy to change. pic

Software engineering principles, from Robert C. Martin's book Clean Code, adapted for Dart.

Summary:

chart

To dig more into dart, you can check out dart official documentation too.