| OLD | NEW |
| 1 Contributing |
| 2 ============ |
| 3 |
| 4 [sky_sdk](https://github.com/domokit/sky_sdk) is generated from the |
| 5 [mojo repository](https://github.com/domokit/mojo) using |
| 6 [deploy_sdk.py](https://github.com/domokit/mojo/blob/master/sky/tools/deploy_sdk
.py) |
| 7 Static files (including this README.md) are located under |
| 8 [sky/sdk](https://github.com/domokit/mojo/tree/master/sky/sdk). Pull |
| 9 requests and issue reports are glady accepted at the |
| 10 [mojo repository](https://github.com/domokit/mojo)! |
| 11 |
| 1 Sky | 12 Sky |
| 2 === | 13 === |
| 3 | 14 |
| 4 Sky is an experimental, high-performance UI framework for mobile apps. Sky helps | 15 Sky is an experimental, high-performance UI framework for mobile apps. Sky helps |
| 5 you create apps with beautiful user interfaces and high-quality interactive | 16 you create apps with beautiful user interfaces and high-quality interactive |
| 6 design that run smoothly at 120 Hz. | 17 design that run smoothly at 120 Hz. |
| 7 | 18 |
| 8 Sky consists of two components: | 19 Sky consists of two components: |
| 9 | 20 |
| 10 1. *The Sky engine.* The engine is the core of the system. Written in C++, the | 21 1. *The Sky engine.* The engine is the core of the system. Written in C++, the |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 [Keyboard](https://github.com/domokit/mojo/blob/master/mojo/services/keyboard/pu
blic/interfaces/keyboard.mojom) | 208 [Keyboard](https://github.com/domokit/mojo/blob/master/mojo/services/keyboard/pu
blic/interfaces/keyboard.mojom) |
| 198 service to allow Sky Framework Dart code to interface with the underlying | 209 service to allow Sky Framework Dart code to interface with the underlying |
| 199 platform's Keyboard, but also to expose any additional non-Dart business logic | 210 platform's Keyboard, but also to expose any additional non-Dart business logic |
| 200 to Sky/Dart UI code. | 211 to Sky/Dart UI code. |
| 201 | 212 |
| 202 As and example, [SkyApplication](https://github.com/domokit/mojo/blob/master/sky
/shell/org/domokit/sky/shell/SkyApplication.java) | 213 As and example, [SkyApplication](https://github.com/domokit/mojo/blob/master/sky
/shell/org/domokit/sky/shell/SkyApplication.java) |
| 203 exposes a mojo `network_service` (required by Sky Engine C++ code) | 214 exposes a mojo `network_service` (required by Sky Engine C++ code) |
| 204 [SkyDemoApplication](https://github.com/domokit/mojo/blob/master/sky/apk/demo/or
g/domokit/sky/demo/SkyDemoApplication.java) | 215 [SkyDemoApplication](https://github.com/domokit/mojo/blob/master/sky/apk/demo/or
g/domokit/sky/demo/SkyDemoApplication.java) |
| 205 additionally exposes `keyboard_service` and `sensor_service` for use by the Sky | 216 additionally exposes `keyboard_service` and `sensor_service` for use by the Sky |
| 206 Framework from Dart. | 217 Framework from Dart. |
| OLD | NEW |