diff options
| -rw-r--r-- | dist/mac/all.css | 45 | ||||
| -rw-r--r-- | scripts/nativekit.js | 1 | ||||
| -rw-r--r-- | scripts/nativeui.js | 0 | ||||
| -rw-r--r-- | templates/mac/index.html | 2 |
4 files changed, 48 insertions, 0 deletions
diff --git a/dist/mac/all.css b/dist/mac/all.css index e69de29..28f64f2 100644 --- a/dist/mac/all.css +++ b/dist/mac/all.css @@ -0,0 +1,45 @@ +/* + +Native Kit Stylesheet. + +v0.1.0 + +Created by Kumar Priyansh on 13/12/2019. + +This file is intended for development of apps for macOS Systems. +This file contains styles for both light and dark mode of macOS. +For development of Windows, please look into the 'windows' folder. + +This product is published under the GPL 3.0 License for free and +thus allows all the users of this product to clone, download, modify +or redistribute the copy of this product. + +This product comes on "AS IS" basis and dows not comes with any kind +of warranty. The use if this file is solely based on your own +discretion. + + +==================================================================== + + +CONTENTS OF THIS FILE: +---------------------- + +1. Window +2. Title Bars +3. Box Layouts +4. Sidebars +5. Image Views +6. Outline Lists +7. Tables +8. Lists +9. Buttons +10. Forms +11. Panels +12. Popovers +13. Split Views +14. Tab Views +15. Progress Indicators + +*/ + diff --git a/scripts/nativekit.js b/scripts/nativekit.js new file mode 100644 index 0000000..ffea5f8 --- /dev/null +++ b/scripts/nativekit.js @@ -0,0 +1 @@ +console.log("Hello World! This app is built using NativeKit")
\ No newline at end of file diff --git a/scripts/nativeui.js b/scripts/nativeui.js deleted file mode 100644 index e69de29..0000000 --- a/scripts/nativeui.js +++ /dev/null diff --git a/templates/mac/index.html b/templates/mac/index.html index 1357638..d655be6 100644 --- a/templates/mac/index.html +++ b/templates/mac/index.html @@ -5,8 +5,10 @@ <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>macOS Native Kit</title> + <link rel="stylesheet" href="./../../dist/mac/all.css"> </head> <body> <h1>Native Kit macOS</h1> + <script src="./../../scripts/nativekit.js"></script> </body> </html>
\ No newline at end of file |
