We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 98246e2 + 34c4aaa commit 824fe83Copy full SHA for 824fe83
README.md
@@ -44,6 +44,18 @@ XML widget to create the Material Design Floating Action Button for NativeScript
44
PLEASE NOTE: The fab is on the same **row number** as the listview
45
***
46
47
+#### Angular + TypeScript
48
+`import { registerElement } from "nativescript-angular/element-registry";`
49
+
50
+`registerElement("Fab", () => require("nativescript-floatingactionbutton").Fab);`
51
52
+##### HTML
53
+```HTML
54
+<StackLayout>
55
+ <FAB (tap)="fabTap()" icon="res://ic_add_white" rippleColor="#f1f1f1" class="fab-button"></FAB>
56
+</StackLayout>
57
+```
58
59
#### CSS
60
Recommended CSS styles.
61
```CSS
0 commit comments