You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[x][**Builder**](https://refactoring.guru/design-patterns/builder) - [[Color Text Format](https://github.com/RefactoringGuru/design-patterns-dart/tree/master/patterns/builder/color_text_format)]
@@ -50,20 +50,16 @@ Here's a style guide which might help you to keep your changes consistent with o
50
50
4. File names should match following convention: `some_class_name.dart`
51
51
52
52
5. Comments may or may not have language tags in them, such as this:
53
-
54
53
```dart
55
-
/**
56
-
* EN: All products families have the same varieties (MacOS/Windows).
57
-
*
58
-
* This is a MacOS variant of a button.
59
-
*
60
-
* RU: Все семейства продуктов имеют одни и те же вариации (MacOS/Windows).
61
-
*
62
-
* Это вариант кнопки под MacOS.
63
-
*/
54
+
// EN: All products families have the same varieties (MacOS/Windows).
55
+
// This is a MacOS variant of a button.
56
+
57
+
// RU: Все семейства продуктов имеют одни и те же вариации (MacOS/Windows).
58
+
// Это вариант кнопки под MacOS.
64
59
```
65
-
66
-
Don't be scared and ignore the non-English part of such comments. If you want to change something in a comment like this, then do it. Even if you do it wrong, we'll tell you how to fix it during the Pull Request.
60
+
Don't be scared and ignore the non-English part of such comments. If you want to change
61
+
something in a comment like this, then do it. Even if you do it wrong, we'll tell you how
62
+
to fix it during the Pull Request.
67
63
68
64
69
65
### Build Flutter examples
@@ -73,7 +69,7 @@ flutter build web -t bin\main.dart --web-renderer html
73
69
```
74
70
75
71
### Deploy flutter demos
76
-
1. Fork this repo: https://github.com/RefactoringGuru/design-patterns-dart
72
+
1. Fork this repo: `https://github.com/RefactoringGuru/design-patterns-dart`
77
73
2. Apply your changes.
78
74
3. Run the script `dart bin\deploy_flutter_demos.dart`.
79
75
This script will build a web platform flutter app and push the changes to your **web-demos** branch on github.
0 commit comments