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.
1 parent 98246e2 commit f90f763Copy full SHA for f90f763
README.md
@@ -44,6 +44,17 @@ 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
+`registerElement("Fab", () => require("nativescript-floatingactionbutton").Fab);`
50
+
51
+##### HTML
52
+```HTML
53
+<StackLayout>
54
+ <FAB (tap)="fabTap()" icon="res://ic_add_white" rippleColor="#f1f1f1" class="fab-button"></FAB>
55
+</StackLayout>
56
57
58
#### CSS
59
Recommended CSS styles.
60
```CSS
0 commit comments