Skip to content

Commit f3d77f2

Browse files
committed
badges
1 parent d8ce49f commit f3d77f2

File tree

2 files changed

+5
-208
lines changed

2 files changed

+5
-208
lines changed

.gitignore

Lines changed: 1 addition & 208 deletions
Original file line numberDiff line numberDiff line change
@@ -1,211 +1,3 @@
1-
## Ignore Visual Studio temporary files, build results, and
2-
## files generated by popular Visual Studio add-ons.
3-
4-
# User-specific files
5-
*.suo
6-
*.user
7-
*.userosscache
8-
*.sln.docstates
9-
.sln
10-
*.sln
11-
nativescript-fab.sln
12-
13-
14-
# User-specific files (MonoDevelop/Xamarin Studio)
15-
*.userprefs
16-
17-
# Build results
18-
[Dd]ebug/
19-
[Dd]ebugPublic/
20-
[Rr]elease/
21-
[Rr]eleases/
22-
x64/
23-
x86/
24-
build/
25-
bld/
26-
[Bb]in/
27-
[Oo]bj/
28-
29-
# Visual Studo 2015 cache/options directory
30-
.vs/
31-
32-
# MSTest test Results
33-
[Tt]est[Rr]esult*/
34-
[Bb]uild[Ll]og.*
35-
36-
# NUNIT
37-
*.VisualState.xml
38-
TestResult.xml
39-
40-
# Build Results of an ATL Project
41-
[Dd]ebugPS/
42-
[Rr]eleasePS/
43-
dlldata.c
44-
45-
*_i.c
46-
*_p.c
47-
*_i.h
48-
*.ilk
49-
*.meta
50-
*.obj
51-
*.pch
52-
*.pdb
53-
*.pgc
54-
*.pgd
55-
*.rsp
56-
*.sbr
57-
*.tlb
58-
*.tli
59-
*.tlh
60-
*.tmp
61-
*.tmp_proj
62-
*.log
63-
*.vspscc
64-
*.vssscc
65-
.builds
66-
*.pidb
67-
*.svclog
68-
*.scc
69-
70-
# Chutzpah Test files
71-
_Chutzpah*
72-
73-
# Visual C++ cache files
74-
ipch/
75-
*.aps
76-
*.ncb
77-
*.opensdf
78-
*.sdf
79-
*.cachefile
80-
81-
# Visual Studio profiler
82-
*.psess
83-
*.vsp
84-
*.vspx
85-
86-
# TFS 2012 Local Workspace
87-
$tf/
88-
89-
# Guidance Automation Toolkit
90-
*.gpState
91-
92-
# ReSharper is a .NET coding add-in
93-
_ReSharper*/
94-
*.[Rr]e[Ss]harper
95-
*.DotSettings.user
96-
97-
# JustCode is a .NET coding addin-in
98-
.JustCode
99-
100-
# TeamCity is a build add-in
101-
_TeamCity*
102-
103-
# DotCover is a Code Coverage Tool
104-
*.dotCover
105-
106-
# NCrunch
107-
_NCrunch_*
108-
.*crunch*.local.xml
109-
110-
# MightyMoose
111-
*.mm.*
112-
AutoTest.Net/
113-
114-
# Web workbench (sass)
115-
.sass-cache/
116-
117-
# Installshield output folder
118-
[Ee]xpress/
119-
120-
# DocProject is a documentation generator add-in
121-
DocProject/buildhelp/
122-
DocProject/Help/*.HxT
123-
DocProject/Help/*.HxC
124-
DocProject/Help/*.hhc
125-
DocProject/Help/*.hhk
126-
DocProject/Help/*.hhp
127-
DocProject/Help/Html2
128-
DocProject/Help/html
129-
130-
# Click-Once directory
131-
publish/
132-
133-
# Publish Web Output
134-
*.[Pp]ublish.xml
135-
*.azurePubxml
136-
# TODO: Comment the next line if you want to checkin your web deploy settings
137-
# but database connection strings (with potential passwords) will be unencrypted
138-
*.pubxml
139-
*.publishproj
140-
141-
# NuGet Packages
142-
*.nupkg
143-
# The packages folder can be ignored because of Package Restore
144-
**/packages/*
145-
# except build/, which is used as an MSBuild target.
146-
!**/packages/build/
147-
# Uncomment if necessary however generally it will be regenerated when needed
148-
#!**/packages/repositories.config
149-
150-
# Windows Azure Build Output
151-
csx/
152-
*.build.csdef
153-
154-
# Windows Store app package directory
155-
AppPackages/
156-
157-
# Others
158-
*.[Cc]ache
159-
ClientBin/
160-
[Ss]tyle[Cc]op.*
161-
~$*
162-
*~
163-
*.dbmdl
164-
*.dbproj.schemaview
165-
*.pfx
166-
*.publishsettings
167-
node_modules/
168-
bower_components/
169-
170-
# RIA/Silverlight projects
171-
Generated_Code/
172-
173-
# Backup & report files from converting an old project file
174-
# to a newer Visual Studio version. Backup files are not needed,
175-
# because we have git ;-)
176-
_UpgradeReport_Files/
177-
Backup*/
178-
UpgradeLog*.XML
179-
UpgradeLog*.htm
180-
181-
# SQL Server files
182-
*.mdf
183-
*.ldf
184-
185-
# Business Intelligence projects
186-
*.rdl.data
187-
*.bim.layout
188-
*.bim_*.settings
189-
190-
# Microsoft Fakes
191-
FakesAssemblies/
192-
193-
# Node.js Tools for Visual Studio
194-
.ntvs_analysis.dat
195-
196-
# Visual Studio 6 build log
197-
*.plg
198-
199-
# Visual Studio 6 workspace options file
200-
*.opt
201-
202-
.vs
203-
.vs/
204-
nativescript-fab.sln
205-
.vscode
206-
207-
.DS_Store
208-
.npmrc
2091
# Demo application build files
2102
demo/platforms/*
2113
demo/lib/*
@@ -220,6 +12,7 @@ node_modules/
22012
.idea
22113
demo/app/.DS_Store
22214
.DS_Store
15+
.npmrc
22316
*.js
22417
*.js.map
22518
*.log

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
[![npm](https://img.shields.io/npm/v/nativescript-floatingactionbutton.svg)](https://www.npmjs.com/package/nativescript-floatingactionbutton)
22
[![npm](https://img.shields.io/npm/dt/nativescript-floatingactionbutton.svg?label=npm%20downloads)](https://www.npmjs.com/package/nativescript-floatingactionbutton)
3+
[![Build Status](https://travis-ci.org/bradmartin/nativescript-floatingactionbutton.svg?branch=master)](https://travis-ci.org/bradmartin/nativescript-floatingactionbutton)
4+
[![nStudio Plugin](https://img.shields.io/badge/nStudio-Plugin-blue.svg)](http://nstudio.io)
5+
![twitter-image](https://img.shields.io/twitter/follow/bradwaynemartin.svg)
6+
37

48
# NativeScript-FloatingActionButton
59
XML widget to create the Material Design Floating Action Button for NativeScript apps.

0 commit comments

Comments
 (0)