├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── com.mikepenz.materialdrawer.d.ts ├── demo ├── app │ ├── App_Resources │ │ ├── Android │ │ │ ├── AndroidManifest.xml │ │ │ ├── app.gradle │ │ │ ├── drawable-hdpi │ │ │ │ ├── background.png │ │ │ │ ├── ic_account_balance_white_24dp.png │ │ │ │ ├── ic_account_circle_white_24dp.png │ │ │ │ ├── ic_build_white_24dp.png │ │ │ │ ├── ic_gavel_white_24dp.png │ │ │ │ ├── ic_home_black_24dp.png │ │ │ │ ├── ic_home_white_24dp.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ ├── drawable-ldpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ ├── drawable-mdpi │ │ │ │ ├── background.png │ │ │ │ ├── ic_account_balance_white_24dp.png │ │ │ │ ├── ic_account_circle_white_24dp.png │ │ │ │ ├── ic_build_white_24dp.png │ │ │ │ ├── ic_gavel_white_24dp.png │ │ │ │ ├── ic_home_black_24dp.png │ │ │ │ ├── ic_home_white_24dp.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ ├── drawable-nodpi │ │ │ │ └── splash_screen.xml │ │ │ ├── drawable-xhdpi │ │ │ │ ├── background.png │ │ │ │ ├── ic_account_balance_white_24dp.png │ │ │ │ ├── ic_account_circle_white_24dp.png │ │ │ │ ├── ic_build_white_24dp.png │ │ │ │ ├── ic_gavel_white_24dp.png │ │ │ │ ├── ic_home_black_24dp.png │ │ │ │ ├── ic_home_white_24dp.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ ├── drawable-xxhdpi │ │ │ │ ├── background.png │ │ │ │ ├── ic_account_balance_white_24dp.png │ │ │ │ ├── ic_account_circle_white_24dp.png │ │ │ │ ├── ic_build_white_24dp.png │ │ │ │ ├── ic_gavel_white_24dp.png │ │ │ │ ├── ic_home_black_24dp.png │ │ │ │ ├── ic_home_white_24dp.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ ├── drawable-xxxhdpi │ │ │ │ ├── background.png │ │ │ │ ├── ic_account_balance_white_24dp.png │ │ │ │ ├── ic_account_circle_white_24dp.png │ │ │ │ ├── ic_build_white_24dp.png │ │ │ │ ├── ic_gavel_white_24dp.png │ │ │ │ ├── ic_home_black_24dp.png │ │ │ │ ├── ic_home_white_24dp.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ ├── values-v21 │ │ │ │ ├── colors.xml │ │ │ │ └── styles.xml │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ └── styles.xml │ │ └── iOS │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon-29.png │ │ │ │ ├── icon-29@2x.png │ │ │ │ ├── icon-29@3x.png │ │ │ │ ├── icon-40.png │ │ │ │ ├── icon-40@2x.png │ │ │ │ ├── icon-40@3x.png │ │ │ │ ├── icon-50.png │ │ │ │ ├── icon-50@2x.png │ │ │ │ ├── icon-57.png │ │ │ │ ├── icon-57@2x.png │ │ │ │ ├── icon-60@2x.png │ │ │ │ ├── icon-60@3x.png │ │ │ │ ├── icon-72.png │ │ │ │ ├── icon-72@2x.png │ │ │ │ ├── icon-76.png │ │ │ │ ├── icon-76@2x.png │ │ │ │ └── icon-83.5@2x.png │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.launchimage │ │ │ │ ├── Contents.json │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── Default-667h@2x.png │ │ │ │ ├── Default-736h@3x.png │ │ │ │ ├── Default-Landscape.png │ │ │ │ ├── Default-Landscape@2x.png │ │ │ │ ├── Default-Landscape@3x.png │ │ │ │ ├── Default-Portrait.png │ │ │ │ ├── Default-Portrait@2x.png │ │ │ │ ├── Default.png │ │ │ │ └── Default@2x.png │ │ │ ├── LaunchScreen.AspectFill.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchScreen-AspectFill.png │ │ │ │ └── LaunchScreen-AspectFill@2x.png │ │ │ ├── LaunchScreen.Center.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchScreen-Center.png │ │ │ │ └── LaunchScreen-Center@2x.png │ │ │ ├── ic_account_balance_white.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ic_account_balance_white.png │ │ │ │ ├── ic_account_balance_white_2x.png │ │ │ │ └── ic_account_balance_white_3x.png │ │ │ ├── ic_account_circle_white.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ic_account_circle_white.png │ │ │ │ ├── ic_account_circle_white_2x.png │ │ │ │ └── ic_account_circle_white_3x.png │ │ │ ├── ic_build_white.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ic_build_white.png │ │ │ │ ├── ic_build_white_2x.png │ │ │ │ └── ic_build_white_3x.png │ │ │ ├── ic_gavel_white.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ic_gavel_white.png │ │ │ │ ├── ic_gavel_white_2x.png │ │ │ │ └── ic_gavel_white_3x.png │ │ │ └── ic_home_white.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ic_home_white.png │ │ │ │ ├── ic_home_white_2x.png │ │ │ │ └── ic_home_white_3x.png │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ └── build.xcconfig │ ├── app.css │ ├── app.ts │ ├── main-page.ts │ ├── main-page.xml │ └── package.json ├── package.json └── tsconfig.json ├── index.d.ts ├── nativescript-sidedrawer.android.d.ts ├── nativescript-sidedrawer.android.ts ├── nativescript-sidedrawer.common.d.ts ├── nativescript-sidedrawer.common.ts ├── nativescript-sidedrawer.ios.d.ts ├── nativescript-sidedrawer.ios.ts ├── nativescript-sidedrawer.sublime-project ├── package.json ├── platforms └── android │ └── include.gradle ├── references.d.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/README.md -------------------------------------------------------------------------------- /com.mikepenz.materialdrawer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/com.mikepenz.materialdrawer.d.ts -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/app.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/app.gradle -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-hdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-hdpi/background.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-hdpi/ic_account_balance_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-hdpi/ic_account_balance_white_24dp.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-hdpi/ic_account_circle_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-hdpi/ic_account_circle_white_24dp.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-hdpi/ic_build_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-hdpi/ic_build_white_24dp.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-hdpi/ic_gavel_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-hdpi/ic_gavel_white_24dp.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-hdpi/ic_home_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-hdpi/ic_home_black_24dp.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-hdpi/ic_home_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-hdpi/ic_home_white_24dp.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-ldpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-ldpi/background.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-ldpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-ldpi/logo.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-mdpi/background.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-mdpi/ic_account_balance_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-mdpi/ic_account_balance_white_24dp.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-mdpi/ic_account_circle_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-mdpi/ic_account_circle_white_24dp.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-mdpi/ic_build_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-mdpi/ic_build_white_24dp.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-mdpi/ic_gavel_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-mdpi/ic_gavel_white_24dp.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-mdpi/ic_home_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-mdpi/ic_home_black_24dp.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-mdpi/ic_home_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-mdpi/ic_home_white_24dp.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-mdpi/logo.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-nodpi/splash_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-nodpi/splash_screen.xml -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-xhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-xhdpi/background.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-xhdpi/ic_account_balance_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-xhdpi/ic_account_balance_white_24dp.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-xhdpi/ic_account_circle_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-xhdpi/ic_account_circle_white_24dp.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-xhdpi/ic_build_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-xhdpi/ic_build_white_24dp.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-xhdpi/ic_gavel_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-xhdpi/ic_gavel_white_24dp.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-xhdpi/ic_home_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-xhdpi/ic_home_black_24dp.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-xhdpi/ic_home_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-xhdpi/ic_home_white_24dp.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-xxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-xxhdpi/background.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-xxhdpi/ic_account_balance_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-xxhdpi/ic_account_balance_white_24dp.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-xxhdpi/ic_account_circle_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-xxhdpi/ic_account_circle_white_24dp.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-xxhdpi/ic_build_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-xxhdpi/ic_build_white_24dp.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-xxhdpi/ic_gavel_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-xxhdpi/ic_gavel_white_24dp.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-xxhdpi/ic_home_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-xxhdpi/ic_home_black_24dp.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-xxhdpi/ic_home_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-xxhdpi/ic_home_white_24dp.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-xxxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-xxxhdpi/background.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-xxxhdpi/ic_account_balance_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-xxxhdpi/ic_account_balance_white_24dp.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-xxxhdpi/ic_account_circle_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-xxxhdpi/ic_account_circle_white_24dp.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-xxxhdpi/ic_build_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-xxxhdpi/ic_build_white_24dp.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-xxxhdpi/ic_gavel_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-xxxhdpi/ic_gavel_white_24dp.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-xxxhdpi/ic_home_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-xxxhdpi/ic_home_black_24dp.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-xxxhdpi/ic_home_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-xxxhdpi/ic_home_white_24dp.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/drawable-xxxhdpi/logo.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/values-v21/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/values-v21/colors.xml -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/values-v21/styles.xml -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/values/colors.xml -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/Android/values/styles.xml -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-50.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-50@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-57.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-57@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-72.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-72@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/ic_account_balance_white.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/ic_account_balance_white.imageset/Contents.json -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/ic_account_balance_white.imageset/ic_account_balance_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/ic_account_balance_white.imageset/ic_account_balance_white.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/ic_account_balance_white.imageset/ic_account_balance_white_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/ic_account_balance_white.imageset/ic_account_balance_white_2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/ic_account_balance_white.imageset/ic_account_balance_white_3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/ic_account_balance_white.imageset/ic_account_balance_white_3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/ic_account_circle_white.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/ic_account_circle_white.imageset/Contents.json -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/ic_account_circle_white.imageset/ic_account_circle_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/ic_account_circle_white.imageset/ic_account_circle_white.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/ic_account_circle_white.imageset/ic_account_circle_white_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/ic_account_circle_white.imageset/ic_account_circle_white_2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/ic_account_circle_white.imageset/ic_account_circle_white_3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/ic_account_circle_white.imageset/ic_account_circle_white_3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/ic_build_white.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/ic_build_white.imageset/Contents.json -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/ic_build_white.imageset/ic_build_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/ic_build_white.imageset/ic_build_white.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/ic_build_white.imageset/ic_build_white_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/ic_build_white.imageset/ic_build_white_2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/ic_build_white.imageset/ic_build_white_3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/ic_build_white.imageset/ic_build_white_3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/ic_gavel_white.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/ic_gavel_white.imageset/Contents.json -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/ic_gavel_white.imageset/ic_gavel_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/ic_gavel_white.imageset/ic_gavel_white.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/ic_gavel_white.imageset/ic_gavel_white_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/ic_gavel_white.imageset/ic_gavel_white_2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/ic_gavel_white.imageset/ic_gavel_white_3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/ic_gavel_white.imageset/ic_gavel_white_3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/ic_home_white.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/ic_home_white.imageset/Contents.json -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/ic_home_white.imageset/ic_home_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/ic_home_white.imageset/ic_home_white.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/ic_home_white.imageset/ic_home_white_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/ic_home_white.imageset/ic_home_white_2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/ic_home_white.imageset/ic_home_white_3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/ic_home_white.imageset/ic_home_white_3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/Info.plist -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/build.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/App_Resources/iOS/build.xcconfig -------------------------------------------------------------------------------- /demo/app/app.css: -------------------------------------------------------------------------------- 1 | button { 2 | font-size: 30; 3 | } 4 | 5 | -------------------------------------------------------------------------------- /demo/app/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/app.ts -------------------------------------------------------------------------------- /demo/app/main-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/main-page.ts -------------------------------------------------------------------------------- /demo/app/main-page.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/main-page.xml -------------------------------------------------------------------------------- /demo/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/app/package.json -------------------------------------------------------------------------------- /demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/package.json -------------------------------------------------------------------------------- /demo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/demo/tsconfig.json -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/index.d.ts -------------------------------------------------------------------------------- /nativescript-sidedrawer.android.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/nativescript-sidedrawer.android.d.ts -------------------------------------------------------------------------------- /nativescript-sidedrawer.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/nativescript-sidedrawer.android.ts -------------------------------------------------------------------------------- /nativescript-sidedrawer.common.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/nativescript-sidedrawer.common.d.ts -------------------------------------------------------------------------------- /nativescript-sidedrawer.common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/nativescript-sidedrawer.common.ts -------------------------------------------------------------------------------- /nativescript-sidedrawer.ios.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/nativescript-sidedrawer.ios.d.ts -------------------------------------------------------------------------------- /nativescript-sidedrawer.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/nativescript-sidedrawer.ios.ts -------------------------------------------------------------------------------- /nativescript-sidedrawer.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/nativescript-sidedrawer.sublime-project -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/package.json -------------------------------------------------------------------------------- /platforms/android/include.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/platforms/android/include.gradle -------------------------------------------------------------------------------- /references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/references.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gethuman/nativescript-sidedrawer/HEAD/tsconfig.json --------------------------------------------------------------------------------