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

Unified Diff: sky/examples/fn/widgets/floating_action_button.dart

Issue 975913002: Implement a floating action button in fn (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 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/fn/widgets/style_component.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/examples/fn/widgets/floating_action_button.dart
diff --git a/sky/examples/fn/widgets/floating_action_button.dart b/sky/examples/fn/widgets/floating_action_button.dart
new file mode 100644
index 0000000000000000000000000000000000000000..d40e74cf313c2688e4f85e5b83541ab77443d671
--- /dev/null
+++ b/sky/examples/fn/widgets/floating_action_button.dart
@@ -0,0 +1,22 @@
+part of widgets;
+
+class FloatingActionButton extends StyleComponent {
+ static final Style _style = new Style('''
+ position: absolute;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ bottom: 16px;
+ right: 16px;
+ width: 56px;
+ height: 56px;
+ background-color: #F44336;
+ color: white;
+ border-radius: 28px;
+ box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);'''
+ );
+
+ Style get style => _style;
+
+ FloatingActionButton({ Object key, Node content }) : super(key: key, content: content);
+}
« no previous file with comments | « no previous file | sky/examples/fn/widgets/style_component.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698