├── .vscode
├── extensions.json
├── settings.json
└── launch.json
├── references.d.ts
├── .prettierrc
├── app
├── app.ts
├── solid-adapter.ts
├── test.tsx
├── renderer.ts
├── solid-native-jsx.ts
└── nativescript-jsx.ts
├── App_Resources
├── iOS
│ ├── Assets.xcassets
│ │ ├── Contents.json
│ │ ├── AppIcon.appiconset
│ │ │ ├── icon-20.png
│ │ │ ├── icon-29.png
│ │ │ ├── icon-40.png
│ │ │ ├── icon-76.png
│ │ │ ├── icon-1024.png
│ │ │ ├── icon-20@2x.png
│ │ │ ├── icon-20@3x.png
│ │ │ ├── icon-29@2x.png
│ │ │ ├── icon-29@3x.png
│ │ │ ├── icon-40@2x.png
│ │ │ ├── icon-40@3x.png
│ │ │ ├── icon-60@2x.png
│ │ │ ├── icon-60@3x.png
│ │ │ ├── icon-76@2x.png
│ │ │ ├── icon-83.5@2x.png
│ │ │ └── Contents.json
│ │ ├── LaunchScreen.Center.imageset
│ │ │ ├── LaunchScreen-Center.png
│ │ │ ├── LaunchScreen-Center@2x.png
│ │ │ ├── LaunchScreen-Center@3x.png
│ │ │ └── Contents.json
│ │ └── LaunchScreen.AspectFill.imageset
│ │ │ ├── LaunchScreen-AspectFill.png
│ │ │ ├── LaunchScreen-AspectFill@2x.png
│ │ │ ├── LaunchScreen-AspectFill@3x.png
│ │ │ └── Contents.json
│ ├── build.xcconfig
│ ├── Info.plist
│ └── LaunchScreen.storyboard
└── Android
│ ├── src
│ └── main
│ │ ├── res
│ │ ├── values-v21
│ │ │ ├── colors.xml
│ │ │ └── styles.xml
│ │ ├── drawable-hdpi
│ │ │ ├── logo.png
│ │ │ └── background.png
│ │ ├── drawable-ldpi
│ │ │ ├── logo.png
│ │ │ └── background.png
│ │ ├── drawable-mdpi
│ │ │ ├── logo.png
│ │ │ └── background.png
│ │ ├── drawable-xhdpi
│ │ │ ├── logo.png
│ │ │ └── background.png
│ │ ├── drawable-xxhdpi
│ │ │ ├── logo.png
│ │ │ └── background.png
│ │ ├── drawable-xxxhdpi
│ │ │ ├── logo.png
│ │ │ └── background.png
│ │ ├── mipmap-hdpi
│ │ │ └── ic_launcher.png
│ │ ├── mipmap-mdpi
│ │ │ └── ic_launcher.png
│ │ ├── mipmap-xhdpi
│ │ │ └── ic_launcher.png
│ │ ├── mipmap-xxhdpi
│ │ │ └── ic_launcher.png
│ │ ├── values
│ │ │ ├── ic_launcher_background.xml
│ │ │ ├── colors.xml
│ │ │ └── styles.xml
│ │ ├── mipmap-xxxhdpi
│ │ │ └── ic_launcher.png
│ │ ├── mipmap-anydpi-v26
│ │ │ └── ic_launcher.xml
│ │ ├── drawable-nodpi
│ │ │ └── splash_screen.xml
│ │ ├── values-v29
│ │ │ └── styles.xml
│ │ └── drawable
│ │ │ └── ic_launcher_foreground.xml
│ │ └── AndroidManifest.xml
│ └── app.gradle
├── README.md
├── .editorconfig
├── nativescript.config.ts
├── .gitignore
├── package.json
├── tsconfig.json
├── webpack.config.js
└── Solid-Native.svg
/.vscode/extensions.json:
--------------------------------------------------------------------------------
1 | {
2 | "recommendations": ["nativescript.nativescript"]
3 | }
4 |
--------------------------------------------------------------------------------
/references.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
3 |
7 | Simple and performant reactivity for building user interfaces. 8 |
9 | -------------------------------------------------------------------------------- /App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrFoxPro/solid-nativescript-experiments/HEAD/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png -------------------------------------------------------------------------------- /App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrFoxPro/solid-nativescript-experiments/HEAD/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png -------------------------------------------------------------------------------- /App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrFoxPro/solid-nativescript-experiments/HEAD/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@3x.png -------------------------------------------------------------------------------- /App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrFoxPro/solid-nativescript-experiments/HEAD/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png -------------------------------------------------------------------------------- /App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrFoxPro/solid-nativescript-experiments/HEAD/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png -------------------------------------------------------------------------------- /App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrFoxPro/solid-nativescript-experiments/HEAD/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@3x.png -------------------------------------------------------------------------------- /App_Resources/Android/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | = TNativeScriptAttributes