├── .editorconfig ├── .gitignore ├── README.md ├── nativescript-angular ├── .gitignore ├── nativescript.config.ts ├── package.json ├── project.json ├── references.d.ts ├── src │ ├── app.css │ ├── app │ │ ├── app.component.html │ │ ├── app.component.ts │ │ ├── app.routes.ts │ │ ├── home.component.html │ │ └── home.component.ts │ ├── main.ts │ └── polyfills.ts ├── tsconfig.json └── webpack.config.js ├── nativescript-react ├── .gitignore ├── LICENSE ├── nativescript.config.ts ├── package.json ├── project.json ├── references.d.ts ├── src │ ├── app.css │ ├── app.ts │ └── components │ │ └── Home.tsx ├── tsconfig.json └── webpack.config.js ├── nativescript-solid ├── .gitignore ├── nativescript.config.ts ├── package.json ├── project.json ├── src │ ├── app.css │ ├── app.tsx │ ├── components │ │ └── home.tsx │ └── index.js ├── tsconfig.json └── webpack.config.js ├── nativescript-svelte ├── .gitignore ├── nativescript.config.ts ├── package.json ├── references.d.ts ├── src │ ├── App.svelte │ ├── app.css │ ├── app.ts │ └── components │ │ └── Home.svelte ├── svelte.config.js ├── tsconfig.json ├── types │ ├── references.d.ts │ └── shims.svelte.d.ts └── webpack.config.js ├── nativescript-typescript ├── .gitignore ├── nativescript.config.ts ├── package.json ├── references.d.ts ├── src │ ├── app-root.xml │ ├── app.css │ ├── app.ts │ ├── main-page.ts │ ├── main-page.xml │ └── main-view-model.ts ├── tsconfig.json └── webpack.config.js ├── nativescript-vue ├── .gitignore ├── nativescript.config.ts ├── package.json ├── references.d.ts ├── src │ ├── app.css │ ├── app.ts │ └── components │ │ └── Home.vue ├── tsconfig.json ├── types │ ├── references.d.ts │ └── shims.vue.d.ts └── webpack.config.js └── shared └── App_Resources ├── Android ├── app.gradle ├── before-plugins.gradle └── src │ └── main │ ├── AndroidManifest.xml │ └── res │ ├── drawable-hdpi │ ├── background.png │ └── logo.png │ ├── drawable-ldpi │ ├── background.png │ └── logo.png │ ├── drawable-mdpi │ ├── background.png │ └── logo.png │ ├── drawable-nodpi │ └── splash_screen.xml │ ├── drawable-xhdpi │ ├── background.png │ └── logo.png │ ├── drawable-xxhdpi │ ├── background.png │ └── logo.png │ ├── drawable-xxxhdpi │ ├── background.png │ └── logo.png │ ├── drawable │ └── ic_launcher_foreground.xml │ ├── mipmap-anydpi-v26 │ └── ic_launcher.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── mipmap-xxxhdpi │ └── ic_launcher.png │ ├── values-v21 │ ├── colors.xml │ └── styles.xml │ ├── values-v29 │ └── styles.xml │ └── values │ ├── colors.xml │ ├── ic_launcher_background.xml │ └── styles.xml └── iOS ├── Assets.xcassets ├── AppIcon.appiconset │ ├── Contents.json │ ├── icon-1024.png │ ├── icon-20.png │ ├── icon-20@2x.png │ ├── icon-20@3x.png │ ├── icon-29.png │ ├── icon-29@2x.png │ ├── icon-29@3x.png │ ├── icon-40.png │ ├── icon-40@2x.png │ ├── icon-40@3x.png │ ├── icon-60@2x.png │ ├── icon-60@3x.png │ ├── icon-76.png │ ├── icon-76@2x.png │ └── icon-83.5@2x.png ├── Contents.json ├── LaunchScreen.AspectFill.imageset │ ├── Contents.json │ ├── LaunchScreen-AspectFill.png │ ├── LaunchScreen-AspectFill@2x.png │ └── LaunchScreen-AspectFill@3x.png ├── LaunchScreen.Center.imageset │ ├── Contents.json │ ├── LaunchScreen-Center.png │ ├── LaunchScreen-Center@2x.png │ └── LaunchScreen-Center@3x.png ├── lava.lamp.fill.imageset │ ├── Contents.json │ ├── lava.lamp.fill 1.png │ ├── lava.lamp.fill 2.png │ └── lava.lamp.fill.png └── lava.lamp.imageset │ ├── Contents.json │ ├── lava.lamp 1.png │ ├── lava.lamp 2.png │ └── lava.lamp.png ├── Info.plist ├── LaunchScreen.storyboard └── build.xcconfig /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/README.md -------------------------------------------------------------------------------- /nativescript-angular/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-angular/.gitignore -------------------------------------------------------------------------------- /nativescript-angular/nativescript.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-angular/nativescript.config.ts -------------------------------------------------------------------------------- /nativescript-angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-angular/package.json -------------------------------------------------------------------------------- /nativescript-angular/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-angular/project.json -------------------------------------------------------------------------------- /nativescript-angular/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-angular/references.d.ts -------------------------------------------------------------------------------- /nativescript-angular/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-angular/src/app.css -------------------------------------------------------------------------------- /nativescript-angular/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-angular/src/app/app.component.html -------------------------------------------------------------------------------- /nativescript-angular/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-angular/src/app/app.component.ts -------------------------------------------------------------------------------- /nativescript-angular/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-angular/src/app/app.routes.ts -------------------------------------------------------------------------------- /nativescript-angular/src/app/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-angular/src/app/home.component.html -------------------------------------------------------------------------------- /nativescript-angular/src/app/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-angular/src/app/home.component.ts -------------------------------------------------------------------------------- /nativescript-angular/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-angular/src/main.ts -------------------------------------------------------------------------------- /nativescript-angular/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-angular/src/polyfills.ts -------------------------------------------------------------------------------- /nativescript-angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-angular/tsconfig.json -------------------------------------------------------------------------------- /nativescript-angular/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-angular/webpack.config.js -------------------------------------------------------------------------------- /nativescript-react/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-react/.gitignore -------------------------------------------------------------------------------- /nativescript-react/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-react/LICENSE -------------------------------------------------------------------------------- /nativescript-react/nativescript.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-react/nativescript.config.ts -------------------------------------------------------------------------------- /nativescript-react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-react/package.json -------------------------------------------------------------------------------- /nativescript-react/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-react/project.json -------------------------------------------------------------------------------- /nativescript-react/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-react/references.d.ts -------------------------------------------------------------------------------- /nativescript-react/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-react/src/app.css -------------------------------------------------------------------------------- /nativescript-react/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-react/src/app.ts -------------------------------------------------------------------------------- /nativescript-react/src/components/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-react/src/components/Home.tsx -------------------------------------------------------------------------------- /nativescript-react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-react/tsconfig.json -------------------------------------------------------------------------------- /nativescript-react/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-react/webpack.config.js -------------------------------------------------------------------------------- /nativescript-solid/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-solid/.gitignore -------------------------------------------------------------------------------- /nativescript-solid/nativescript.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-solid/nativescript.config.ts -------------------------------------------------------------------------------- /nativescript-solid/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-solid/package.json -------------------------------------------------------------------------------- /nativescript-solid/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-solid/project.json -------------------------------------------------------------------------------- /nativescript-solid/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-solid/src/app.css -------------------------------------------------------------------------------- /nativescript-solid/src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-solid/src/app.tsx -------------------------------------------------------------------------------- /nativescript-solid/src/components/home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-solid/src/components/home.tsx -------------------------------------------------------------------------------- /nativescript-solid/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-solid/src/index.js -------------------------------------------------------------------------------- /nativescript-solid/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-solid/tsconfig.json -------------------------------------------------------------------------------- /nativescript-solid/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-solid/webpack.config.js -------------------------------------------------------------------------------- /nativescript-svelte/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-svelte/.gitignore -------------------------------------------------------------------------------- /nativescript-svelte/nativescript.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-svelte/nativescript.config.ts -------------------------------------------------------------------------------- /nativescript-svelte/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-svelte/package.json -------------------------------------------------------------------------------- /nativescript-svelte/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-svelte/references.d.ts -------------------------------------------------------------------------------- /nativescript-svelte/src/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-svelte/src/App.svelte -------------------------------------------------------------------------------- /nativescript-svelte/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-svelte/src/app.css -------------------------------------------------------------------------------- /nativescript-svelte/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-svelte/src/app.ts -------------------------------------------------------------------------------- /nativescript-svelte/src/components/Home.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-svelte/src/components/Home.svelte -------------------------------------------------------------------------------- /nativescript-svelte/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-svelte/svelte.config.js -------------------------------------------------------------------------------- /nativescript-svelte/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-svelte/tsconfig.json -------------------------------------------------------------------------------- /nativescript-svelte/types/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-svelte/types/references.d.ts -------------------------------------------------------------------------------- /nativescript-svelte/types/shims.svelte.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-svelte/types/shims.svelte.d.ts -------------------------------------------------------------------------------- /nativescript-svelte/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-svelte/webpack.config.js -------------------------------------------------------------------------------- /nativescript-typescript/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-typescript/.gitignore -------------------------------------------------------------------------------- /nativescript-typescript/nativescript.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-typescript/nativescript.config.ts -------------------------------------------------------------------------------- /nativescript-typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-typescript/package.json -------------------------------------------------------------------------------- /nativescript-typescript/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-typescript/references.d.ts -------------------------------------------------------------------------------- /nativescript-typescript/src/app-root.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-typescript/src/app-root.xml -------------------------------------------------------------------------------- /nativescript-typescript/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-typescript/src/app.css -------------------------------------------------------------------------------- /nativescript-typescript/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-typescript/src/app.ts -------------------------------------------------------------------------------- /nativescript-typescript/src/main-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-typescript/src/main-page.ts -------------------------------------------------------------------------------- /nativescript-typescript/src/main-page.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-typescript/src/main-page.xml -------------------------------------------------------------------------------- /nativescript-typescript/src/main-view-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-typescript/src/main-view-model.ts -------------------------------------------------------------------------------- /nativescript-typescript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-typescript/tsconfig.json -------------------------------------------------------------------------------- /nativescript-typescript/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-typescript/webpack.config.js -------------------------------------------------------------------------------- /nativescript-vue/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-vue/.gitignore -------------------------------------------------------------------------------- /nativescript-vue/nativescript.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-vue/nativescript.config.ts -------------------------------------------------------------------------------- /nativescript-vue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-vue/package.json -------------------------------------------------------------------------------- /nativescript-vue/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-vue/references.d.ts -------------------------------------------------------------------------------- /nativescript-vue/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-vue/src/app.css -------------------------------------------------------------------------------- /nativescript-vue/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-vue/src/app.ts -------------------------------------------------------------------------------- /nativescript-vue/src/components/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-vue/src/components/Home.vue -------------------------------------------------------------------------------- /nativescript-vue/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-vue/tsconfig.json -------------------------------------------------------------------------------- /nativescript-vue/types/references.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /nativescript-vue/types/shims.vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-vue/types/shims.vue.d.ts -------------------------------------------------------------------------------- /nativescript-vue/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/nativescript-vue/webpack.config.js -------------------------------------------------------------------------------- /shared/App_Resources/Android/app.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/Android/app.gradle -------------------------------------------------------------------------------- /shared/App_Resources/Android/before-plugins.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/Android/before-plugins.gradle -------------------------------------------------------------------------------- /shared/App_Resources/Android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/Android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /shared/App_Resources/Android/src/main/res/drawable-hdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/Android/src/main/res/drawable-hdpi/background.png -------------------------------------------------------------------------------- /shared/App_Resources/Android/src/main/res/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/Android/src/main/res/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /shared/App_Resources/Android/src/main/res/drawable-ldpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/Android/src/main/res/drawable-ldpi/background.png -------------------------------------------------------------------------------- /shared/App_Resources/Android/src/main/res/drawable-ldpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/Android/src/main/res/drawable-ldpi/logo.png -------------------------------------------------------------------------------- /shared/App_Resources/Android/src/main/res/drawable-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/Android/src/main/res/drawable-mdpi/background.png -------------------------------------------------------------------------------- /shared/App_Resources/Android/src/main/res/drawable-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/Android/src/main/res/drawable-mdpi/logo.png -------------------------------------------------------------------------------- /shared/App_Resources/Android/src/main/res/drawable-nodpi/splash_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/Android/src/main/res/drawable-nodpi/splash_screen.xml -------------------------------------------------------------------------------- /shared/App_Resources/Android/src/main/res/drawable-xhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/Android/src/main/res/drawable-xhdpi/background.png -------------------------------------------------------------------------------- /shared/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /shared/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png -------------------------------------------------------------------------------- /shared/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /shared/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png -------------------------------------------------------------------------------- /shared/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png -------------------------------------------------------------------------------- /shared/App_Resources/Android/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/Android/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /shared/App_Resources/Android/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/Android/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /shared/App_Resources/Android/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/Android/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /shared/App_Resources/Android/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/Android/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /shared/App_Resources/Android/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/Android/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /shared/App_Resources/Android/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/Android/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /shared/App_Resources/Android/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/Android/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /shared/App_Resources/Android/src/main/res/values-v21/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/Android/src/main/res/values-v21/colors.xml -------------------------------------------------------------------------------- /shared/App_Resources/Android/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/Android/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /shared/App_Resources/Android/src/main/res/values-v29/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/Android/src/main/res/values-v29/styles.xml -------------------------------------------------------------------------------- /shared/App_Resources/Android/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/Android/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /shared/App_Resources/Android/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/Android/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /shared/App_Resources/Android/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/Android/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /shared/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /shared/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png -------------------------------------------------------------------------------- /shared/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20.png -------------------------------------------------------------------------------- /shared/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png -------------------------------------------------------------------------------- /shared/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png -------------------------------------------------------------------------------- /shared/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /shared/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /shared/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /shared/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /shared/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /shared/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /shared/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /shared/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /shared/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /shared/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /shared/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /shared/App_Resources/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /shared/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json -------------------------------------------------------------------------------- /shared/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png -------------------------------------------------------------------------------- /shared/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png -------------------------------------------------------------------------------- /shared/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@3x.png -------------------------------------------------------------------------------- /shared/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json -------------------------------------------------------------------------------- /shared/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png -------------------------------------------------------------------------------- /shared/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png -------------------------------------------------------------------------------- /shared/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@3x.png -------------------------------------------------------------------------------- /shared/App_Resources/iOS/Assets.xcassets/lava.lamp.fill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/iOS/Assets.xcassets/lava.lamp.fill.imageset/Contents.json -------------------------------------------------------------------------------- /shared/App_Resources/iOS/Assets.xcassets/lava.lamp.fill.imageset/lava.lamp.fill 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/iOS/Assets.xcassets/lava.lamp.fill.imageset/lava.lamp.fill 1.png -------------------------------------------------------------------------------- /shared/App_Resources/iOS/Assets.xcassets/lava.lamp.fill.imageset/lava.lamp.fill 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/iOS/Assets.xcassets/lava.lamp.fill.imageset/lava.lamp.fill 2.png -------------------------------------------------------------------------------- /shared/App_Resources/iOS/Assets.xcassets/lava.lamp.fill.imageset/lava.lamp.fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/iOS/Assets.xcassets/lava.lamp.fill.imageset/lava.lamp.fill.png -------------------------------------------------------------------------------- /shared/App_Resources/iOS/Assets.xcassets/lava.lamp.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/iOS/Assets.xcassets/lava.lamp.imageset/Contents.json -------------------------------------------------------------------------------- /shared/App_Resources/iOS/Assets.xcassets/lava.lamp.imageset/lava.lamp 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/iOS/Assets.xcassets/lava.lamp.imageset/lava.lamp 1.png -------------------------------------------------------------------------------- /shared/App_Resources/iOS/Assets.xcassets/lava.lamp.imageset/lava.lamp 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/iOS/Assets.xcassets/lava.lamp.imageset/lava.lamp 2.png -------------------------------------------------------------------------------- /shared/App_Resources/iOS/Assets.xcassets/lava.lamp.imageset/lava.lamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/iOS/Assets.xcassets/lava.lamp.imageset/lava.lamp.png -------------------------------------------------------------------------------- /shared/App_Resources/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/iOS/Info.plist -------------------------------------------------------------------------------- /shared/App_Resources/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /shared/App_Resources/iOS/build.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanWalker/ns-tailwind-4-examples/HEAD/shared/App_Resources/iOS/build.xcconfig --------------------------------------------------------------------------------