├── .gitignore ├── .npmignore ├── LICENSE ├── Readme.md ├── android17.d.ts ├── demo ├── app │ ├── App_Resources │ │ ├── Android │ │ │ ├── AndroidManifest.xml │ │ │ ├── app.gradle │ │ │ ├── drawable-hdpi │ │ │ │ └── icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── icon.png │ │ │ └── drawable-nodpi │ │ │ │ └── splashscreen.9.png │ │ └── iOS │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-667h@2x.png │ │ │ ├── Default-736h@3x.png │ │ │ ├── Default-Landscape-568h@2x.png │ │ │ ├── Default-Landscape-667h@2x.png │ │ │ ├── Default-Landscape.png │ │ │ ├── Default-Landscape@2x.png │ │ │ ├── Default-Landscape@3x.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default-Portrait@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-Small-50.png │ │ │ ├── Icon-Small-50@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Info.plist │ │ │ ├── icon-40.png │ │ │ ├── icon-40@2x.png │ │ │ ├── icon-60.png │ │ │ ├── icon-60@2x.png │ │ │ ├── icon-72.png │ │ │ ├── icon-72@2x.png │ │ │ ├── icon-76.png │ │ │ ├── icon-76@2x.png │ │ │ ├── icon.png │ │ │ └── icon@2x.png │ ├── app.css │ ├── app.ts │ ├── images │ │ └── mountains.png │ ├── main-page.ts │ ├── main-page.xml │ ├── package.json │ └── songs.json ├── package.json └── tsconfig.json ├── ios.d.ts ├── nativescript-collapsing-header.d.ts ├── nativescript-collapsing-header.ts ├── package.json ├── tsconfig.json ├── tslint.json ├── utilities.d.ts └── utilities.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/Readme.md -------------------------------------------------------------------------------- /android17.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/android17.d.ts -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/demo/app/App_Resources/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/app.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/demo/app/App_Resources/Android/app.gradle -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/demo/app/App_Resources/Android/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/demo/app/App_Resources/Android/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/demo/app/App_Resources/Android/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-nodpi/splashscreen.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/demo/app/App_Resources/Android/drawable-nodpi/splashscreen.9.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/demo/app/App_Resources/iOS/Default-568h@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/demo/app/App_Resources/iOS/Default-667h@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/demo/app/App_Resources/iOS/Default-736h@3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Default-Landscape-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/demo/app/App_Resources/iOS/Default-Landscape-568h@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Default-Landscape-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/demo/app/App_Resources/iOS/Default-Landscape-667h@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/demo/app/App_Resources/iOS/Default-Landscape.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Default-Landscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/demo/app/App_Resources/iOS/Default-Landscape@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Default-Landscape@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/demo/app/App_Resources/iOS/Default-Landscape@3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/demo/app/App_Resources/iOS/Default-Portrait.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/demo/app/App_Resources/iOS/Default-Portrait@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/demo/app/App_Resources/iOS/Default.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/demo/app/App_Resources/iOS/Default@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Icon-Small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/demo/app/App_Resources/iOS/Icon-Small-50.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Icon-Small-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/demo/app/App_Resources/iOS/Icon-Small-50@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/demo/app/App_Resources/iOS/Icon-Small.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/demo/app/App_Resources/iOS/Icon-Small@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/demo/app/App_Resources/iOS/Info.plist -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/demo/app/App_Resources/iOS/icon-40.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/demo/app/App_Resources/iOS/icon-40@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/demo/app/App_Resources/iOS/icon-60.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/demo/app/App_Resources/iOS/icon-60@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/demo/app/App_Resources/iOS/icon-72.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/demo/app/App_Resources/iOS/icon-72@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/demo/app/App_Resources/iOS/icon-76.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/demo/app/App_Resources/iOS/icon-76@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/demo/app/App_Resources/iOS/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/demo/app/App_Resources/iOS/icon@2x.png -------------------------------------------------------------------------------- /demo/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/demo/app/app.css -------------------------------------------------------------------------------- /demo/app/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/demo/app/app.ts -------------------------------------------------------------------------------- /demo/app/images/mountains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/demo/app/images/mountains.png -------------------------------------------------------------------------------- /demo/app/main-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/demo/app/main-page.ts -------------------------------------------------------------------------------- /demo/app/main-page.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/demo/app/main-page.xml -------------------------------------------------------------------------------- /demo/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/demo/app/package.json -------------------------------------------------------------------------------- /demo/app/songs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/demo/app/songs.json -------------------------------------------------------------------------------- /demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/demo/package.json -------------------------------------------------------------------------------- /demo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/demo/tsconfig.json -------------------------------------------------------------------------------- /ios.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/ios.d.ts -------------------------------------------------------------------------------- /nativescript-collapsing-header.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/nativescript-collapsing-header.d.ts -------------------------------------------------------------------------------- /nativescript-collapsing-header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/nativescript-collapsing-header.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/tslint.json -------------------------------------------------------------------------------- /utilities.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/utilities.d.ts -------------------------------------------------------------------------------- /utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshDSommer/nativescript-collapsing-header/HEAD/utilities.ts --------------------------------------------------------------------------------