├── .gitignore ├── README.md ├── nodegui ├── .gitkeep ├── calculator │ ├── .gitignore │ ├── README.md │ ├── calculator_linux.png │ ├── calculator_mac.png │ ├── calculator_win.jpg │ ├── package-lock.json │ ├── package.json │ ├── src │ │ └── index.ts │ ├── tsconfig.json │ └── webpack.config.js ├── clipboard-image │ ├── .gitignore │ ├── README.md │ ├── assets.d.ts │ ├── package-lock.json │ ├── package.json │ ├── src │ │ └── index.ts │ ├── tsconfig.json │ └── webpack.config.js ├── custom-native-widget-qpainter │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── analog-clock.gif │ ├── package-lock.json │ ├── package.json │ ├── src │ │ └── index.ts │ ├── tsconfig.json │ └── webpack.config.js ├── password-generator │ └── README.md └── systray │ ├── .gitignore │ ├── README.md │ ├── assets │ ├── nodegui_white.png │ └── systray-example.gif │ ├── package-lock.json │ ├── package.json │ ├── src │ └── index.ts │ ├── tsconfig.json │ └── webpack.config.js └── react-nodegui ├── SystemUtility └── README.md ├── calculator ├── README.md ├── calculator_linux.png ├── calculator_mac.png ├── calculator_win.jpg ├── index.tsx ├── package-lock.json ├── package.json └── tsconfig.json ├── image-view ├── README.md ├── image_view_linux.png ├── image_view_mac.png ├── image_view_win.jpg ├── index.tsx ├── package-lock.json ├── package.json └── tsconfig.json ├── react-router-example ├── .babelrc ├── .gitignore ├── README.md ├── assets.d.ts ├── assets │ └── routes.gif ├── package-lock.json ├── package.json ├── src │ ├── app.tsx │ ├── index.tsx │ ├── pages │ │ ├── About.tsx │ │ └── Home.tsx │ └── routes.tsx ├── tsconfig.json └── webpack.config.js └── weather-app-widget ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── src ├── assets │ └── icons │ │ ├── 01d.png │ │ ├── 01n.png │ │ ├── 02d.png │ │ ├── 02n.png │ │ ├── 03d.png │ │ ├── 03n.png │ │ ├── 04d.png │ │ ├── 04n.png │ │ ├── 09d.png │ │ ├── 09n.png │ │ ├── 10d.png │ │ ├── 10n.png │ │ ├── 11d.png │ │ ├── 11n.png │ │ ├── 13d.png │ │ ├── 13n.png │ │ ├── 50d.png │ │ ├── 50n.png │ │ └── na.png ├── components │ ├── PlaceDate.tsx │ ├── Summary.tsx │ ├── TemperatureBox.tsx │ └── WeatherIcon.tsx ├── index.tsx └── utils │ ├── helpers.ts │ └── weather.ts ├── tsconfig.json └── weather_widget_mac.png /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/README.md -------------------------------------------------------------------------------- /nodegui/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nodegui/calculator/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist/ 3 | *.log 4 | .vscode -------------------------------------------------------------------------------- /nodegui/calculator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/nodegui/calculator/README.md -------------------------------------------------------------------------------- /nodegui/calculator/calculator_linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/nodegui/calculator/calculator_linux.png -------------------------------------------------------------------------------- /nodegui/calculator/calculator_mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/nodegui/calculator/calculator_mac.png -------------------------------------------------------------------------------- /nodegui/calculator/calculator_win.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/nodegui/calculator/calculator_win.jpg -------------------------------------------------------------------------------- /nodegui/calculator/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/nodegui/calculator/package-lock.json -------------------------------------------------------------------------------- /nodegui/calculator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/nodegui/calculator/package.json -------------------------------------------------------------------------------- /nodegui/calculator/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/nodegui/calculator/src/index.ts -------------------------------------------------------------------------------- /nodegui/calculator/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/nodegui/calculator/tsconfig.json -------------------------------------------------------------------------------- /nodegui/calculator/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/nodegui/calculator/webpack.config.js -------------------------------------------------------------------------------- /nodegui/clipboard-image/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist/ 3 | *.log 4 | .vscode -------------------------------------------------------------------------------- /nodegui/clipboard-image/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/nodegui/clipboard-image/README.md -------------------------------------------------------------------------------- /nodegui/clipboard-image/assets.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/nodegui/clipboard-image/assets.d.ts -------------------------------------------------------------------------------- /nodegui/clipboard-image/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/nodegui/clipboard-image/package-lock.json -------------------------------------------------------------------------------- /nodegui/clipboard-image/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/nodegui/clipboard-image/package.json -------------------------------------------------------------------------------- /nodegui/clipboard-image/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/nodegui/clipboard-image/src/index.ts -------------------------------------------------------------------------------- /nodegui/clipboard-image/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/nodegui/clipboard-image/tsconfig.json -------------------------------------------------------------------------------- /nodegui/clipboard-image/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/nodegui/clipboard-image/webpack.config.js -------------------------------------------------------------------------------- /nodegui/custom-native-widget-qpainter/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist/ 3 | *.log 4 | .vscode -------------------------------------------------------------------------------- /nodegui/custom-native-widget-qpainter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/nodegui/custom-native-widget-qpainter/README.md -------------------------------------------------------------------------------- /nodegui/custom-native-widget-qpainter/assets/analog-clock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/nodegui/custom-native-widget-qpainter/assets/analog-clock.gif -------------------------------------------------------------------------------- /nodegui/custom-native-widget-qpainter/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/nodegui/custom-native-widget-qpainter/package-lock.json -------------------------------------------------------------------------------- /nodegui/custom-native-widget-qpainter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/nodegui/custom-native-widget-qpainter/package.json -------------------------------------------------------------------------------- /nodegui/custom-native-widget-qpainter/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/nodegui/custom-native-widget-qpainter/src/index.ts -------------------------------------------------------------------------------- /nodegui/custom-native-widget-qpainter/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/nodegui/custom-native-widget-qpainter/tsconfig.json -------------------------------------------------------------------------------- /nodegui/custom-native-widget-qpainter/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/nodegui/custom-native-widget-qpainter/webpack.config.js -------------------------------------------------------------------------------- /nodegui/password-generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/nodegui/password-generator/README.md -------------------------------------------------------------------------------- /nodegui/systray/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist/ 3 | *.log 4 | .vscode -------------------------------------------------------------------------------- /nodegui/systray/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/nodegui/systray/README.md -------------------------------------------------------------------------------- /nodegui/systray/assets/nodegui_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/nodegui/systray/assets/nodegui_white.png -------------------------------------------------------------------------------- /nodegui/systray/assets/systray-example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/nodegui/systray/assets/systray-example.gif -------------------------------------------------------------------------------- /nodegui/systray/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/nodegui/systray/package-lock.json -------------------------------------------------------------------------------- /nodegui/systray/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/nodegui/systray/package.json -------------------------------------------------------------------------------- /nodegui/systray/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/nodegui/systray/src/index.ts -------------------------------------------------------------------------------- /nodegui/systray/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/nodegui/systray/tsconfig.json -------------------------------------------------------------------------------- /nodegui/systray/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/nodegui/systray/webpack.config.js -------------------------------------------------------------------------------- /react-nodegui/SystemUtility/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/SystemUtility/README.md -------------------------------------------------------------------------------- /react-nodegui/calculator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/calculator/README.md -------------------------------------------------------------------------------- /react-nodegui/calculator/calculator_linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/calculator/calculator_linux.png -------------------------------------------------------------------------------- /react-nodegui/calculator/calculator_mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/calculator/calculator_mac.png -------------------------------------------------------------------------------- /react-nodegui/calculator/calculator_win.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/calculator/calculator_win.jpg -------------------------------------------------------------------------------- /react-nodegui/calculator/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/calculator/index.tsx -------------------------------------------------------------------------------- /react-nodegui/calculator/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/calculator/package-lock.json -------------------------------------------------------------------------------- /react-nodegui/calculator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/calculator/package.json -------------------------------------------------------------------------------- /react-nodegui/calculator/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/calculator/tsconfig.json -------------------------------------------------------------------------------- /react-nodegui/image-view/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/image-view/README.md -------------------------------------------------------------------------------- /react-nodegui/image-view/image_view_linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/image-view/image_view_linux.png -------------------------------------------------------------------------------- /react-nodegui/image-view/image_view_mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/image-view/image_view_mac.png -------------------------------------------------------------------------------- /react-nodegui/image-view/image_view_win.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/image-view/image_view_win.jpg -------------------------------------------------------------------------------- /react-nodegui/image-view/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/image-view/index.tsx -------------------------------------------------------------------------------- /react-nodegui/image-view/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/image-view/package-lock.json -------------------------------------------------------------------------------- /react-nodegui/image-view/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/image-view/package.json -------------------------------------------------------------------------------- /react-nodegui/image-view/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/image-view/tsconfig.json -------------------------------------------------------------------------------- /react-nodegui/react-router-example/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/react-router-example/.babelrc -------------------------------------------------------------------------------- /react-nodegui/react-router-example/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist/ 3 | *.log -------------------------------------------------------------------------------- /react-nodegui/react-router-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/react-router-example/README.md -------------------------------------------------------------------------------- /react-nodegui/react-router-example/assets.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/react-router-example/assets.d.ts -------------------------------------------------------------------------------- /react-nodegui/react-router-example/assets/routes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/react-router-example/assets/routes.gif -------------------------------------------------------------------------------- /react-nodegui/react-router-example/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/react-router-example/package-lock.json -------------------------------------------------------------------------------- /react-nodegui/react-router-example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/react-router-example/package.json -------------------------------------------------------------------------------- /react-nodegui/react-router-example/src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/react-router-example/src/app.tsx -------------------------------------------------------------------------------- /react-nodegui/react-router-example/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/react-router-example/src/index.tsx -------------------------------------------------------------------------------- /react-nodegui/react-router-example/src/pages/About.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/react-router-example/src/pages/About.tsx -------------------------------------------------------------------------------- /react-nodegui/react-router-example/src/pages/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/react-router-example/src/pages/Home.tsx -------------------------------------------------------------------------------- /react-nodegui/react-router-example/src/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/react-router-example/src/routes.tsx -------------------------------------------------------------------------------- /react-nodegui/react-router-example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/react-router-example/tsconfig.json -------------------------------------------------------------------------------- /react-nodegui/react-router-example/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/react-router-example/webpack.config.js -------------------------------------------------------------------------------- /react-nodegui/weather-app-widget/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist/ 3 | *.log -------------------------------------------------------------------------------- /react-nodegui/weather-app-widget/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/weather-app-widget/README.md -------------------------------------------------------------------------------- /react-nodegui/weather-app-widget/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/weather-app-widget/package-lock.json -------------------------------------------------------------------------------- /react-nodegui/weather-app-widget/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/weather-app-widget/package.json -------------------------------------------------------------------------------- /react-nodegui/weather-app-widget/src/assets/icons/01d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/weather-app-widget/src/assets/icons/01d.png -------------------------------------------------------------------------------- /react-nodegui/weather-app-widget/src/assets/icons/01n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/weather-app-widget/src/assets/icons/01n.png -------------------------------------------------------------------------------- /react-nodegui/weather-app-widget/src/assets/icons/02d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/weather-app-widget/src/assets/icons/02d.png -------------------------------------------------------------------------------- /react-nodegui/weather-app-widget/src/assets/icons/02n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/weather-app-widget/src/assets/icons/02n.png -------------------------------------------------------------------------------- /react-nodegui/weather-app-widget/src/assets/icons/03d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/weather-app-widget/src/assets/icons/03d.png -------------------------------------------------------------------------------- /react-nodegui/weather-app-widget/src/assets/icons/03n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/weather-app-widget/src/assets/icons/03n.png -------------------------------------------------------------------------------- /react-nodegui/weather-app-widget/src/assets/icons/04d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/weather-app-widget/src/assets/icons/04d.png -------------------------------------------------------------------------------- /react-nodegui/weather-app-widget/src/assets/icons/04n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/weather-app-widget/src/assets/icons/04n.png -------------------------------------------------------------------------------- /react-nodegui/weather-app-widget/src/assets/icons/09d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/weather-app-widget/src/assets/icons/09d.png -------------------------------------------------------------------------------- /react-nodegui/weather-app-widget/src/assets/icons/09n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/weather-app-widget/src/assets/icons/09n.png -------------------------------------------------------------------------------- /react-nodegui/weather-app-widget/src/assets/icons/10d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/weather-app-widget/src/assets/icons/10d.png -------------------------------------------------------------------------------- /react-nodegui/weather-app-widget/src/assets/icons/10n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/weather-app-widget/src/assets/icons/10n.png -------------------------------------------------------------------------------- /react-nodegui/weather-app-widget/src/assets/icons/11d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/weather-app-widget/src/assets/icons/11d.png -------------------------------------------------------------------------------- /react-nodegui/weather-app-widget/src/assets/icons/11n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/weather-app-widget/src/assets/icons/11n.png -------------------------------------------------------------------------------- /react-nodegui/weather-app-widget/src/assets/icons/13d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/weather-app-widget/src/assets/icons/13d.png -------------------------------------------------------------------------------- /react-nodegui/weather-app-widget/src/assets/icons/13n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/weather-app-widget/src/assets/icons/13n.png -------------------------------------------------------------------------------- /react-nodegui/weather-app-widget/src/assets/icons/50d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/weather-app-widget/src/assets/icons/50d.png -------------------------------------------------------------------------------- /react-nodegui/weather-app-widget/src/assets/icons/50n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/weather-app-widget/src/assets/icons/50n.png -------------------------------------------------------------------------------- /react-nodegui/weather-app-widget/src/assets/icons/na.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/weather-app-widget/src/assets/icons/na.png -------------------------------------------------------------------------------- /react-nodegui/weather-app-widget/src/components/PlaceDate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/weather-app-widget/src/components/PlaceDate.tsx -------------------------------------------------------------------------------- /react-nodegui/weather-app-widget/src/components/Summary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/weather-app-widget/src/components/Summary.tsx -------------------------------------------------------------------------------- /react-nodegui/weather-app-widget/src/components/TemperatureBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/weather-app-widget/src/components/TemperatureBox.tsx -------------------------------------------------------------------------------- /react-nodegui/weather-app-widget/src/components/WeatherIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/weather-app-widget/src/components/WeatherIcon.tsx -------------------------------------------------------------------------------- /react-nodegui/weather-app-widget/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/weather-app-widget/src/index.tsx -------------------------------------------------------------------------------- /react-nodegui/weather-app-widget/src/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/weather-app-widget/src/utils/helpers.ts -------------------------------------------------------------------------------- /react-nodegui/weather-app-widget/src/utils/weather.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/weather-app-widget/src/utils/weather.ts -------------------------------------------------------------------------------- /react-nodegui/weather-app-widget/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/weather-app-widget/tsconfig.json -------------------------------------------------------------------------------- /react-nodegui/weather-app-widget/weather_widget_mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodegui/examples/HEAD/react-nodegui/weather-app-widget/weather_widget_mac.png --------------------------------------------------------------------------------