Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(531)

Unified Diff: sky/examples/raw/interactive_flex.dart

Issue 1158813004: Style guide says enum values should be lowerCamelCase. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | sky/examples/raw/render_paragraph.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/examples/raw/interactive_flex.dart
diff --git a/sky/examples/raw/interactive_flex.dart b/sky/examples/raw/interactive_flex.dart
index fb78ee91d2d2a047174b6a7e67c5ca3b57d46ab7..840ef9635adacade12a7a7e8cef8986376046ec4 100644
--- a/sky/examples/raw/interactive_flex.dart
+++ b/sky/examples/raw/interactive_flex.dart
@@ -53,7 +53,7 @@ void main() {
child.parentData.flex = flex;
}
- var row = new RenderFlex(direction: FlexDirection.Horizontal);
+ var row = new RenderFlex(direction: FlexDirection.horizontal);
// Left cell
addFlexChildSolidColor(row, const Color(0xFF00D2B8), flex: 1);
@@ -64,7 +64,7 @@ void main() {
var padding = new RenderPadding(padding: const EdgeDims.all(10.0), child: image);
row.add(padding);
- RenderFlex column = new RenderFlex(direction: FlexDirection.Vertical);
+ RenderFlex column = new RenderFlex(direction: FlexDirection.vertical);
// Top cell
addFlexChildSolidColor(column, const Color(0xFF55DDCA), flex: 1);
« no previous file with comments | « no previous file | sky/examples/raw/render_paragraph.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698