sky_sdk is generated from the mojo repository using deploy_sdk.py Static files (including this README.md) are located under sky/sdk. Pull requests and issue reports are glady accepted at the mojo repository!
Sky is an experimental, high-performance UI framework for mobile apps. Sky helps you create apps with beautiful user interfaces and high-quality interactive design that run smoothly at 120 Hz.
Sky consists of two components:
-
The Sky engine. The engine is the core of the system. Written in C++, the engine provides the muscle of the Sky system. The engine provides several primitives, including a soft real-time scheduler and a hierarchical, retained-mode graphics system, that let you build high-quality apps.
-
The Sky framework. The framework makes it easy to build apps using Sky by providing familiar user interface widgets, such as buttons, infinite lists, and animations, on top of the engine using Dart. These extensible components follow a functional programming style inspired by React.
We're still iterating on Sky heavily, which means the framework and underlying engine are both likely to change in incompatible ways several times, but if you're interested in trying out the system, this document can help you get started.
Sky uses Dart and Sky applications are Dart Packages. Application creation starts by creating a new directory and adding a pubspec.yaml:
pubspec.yaml for your app:
name: your_app_name
dependencies:
sky: any
Once the pubspec is in place, create a lib
directory (where your dart code
will go), ensure that the 'dart' and 'pub' executables are on your $PATH and
run the following:
pub get && pub run sky:init
.
Currently the Sky Engine assumes the entry point for your application is a
main
function in a Dart file inside your package:
import 'package:sky/widgets/basic.dart';
class HelloWorldApp extends App {
Widget build() {
return new Text('Hello, world!');
}
}
void main() {
runApp(new HelloWorldApp());
}
Execution starts in main
, which instructs the framework to run a new
instance of the HelloWorldApp
. The framework then calls the build()
function on HelloWorldApp
to create a tree of widgets, some of which might
be other Components
, which in turn have build()
functions that generate
more widgets iteratively to create the widget hierarchy.
Later, if a Component
changes state, the framework calls that component's
build()
function again to create a new widget tree. The framework diffs the
new widget tree against the old widget tree and any differences are applyed
to the underlying render tree.
- To learn more about the widget system, please see the widgets tutorial.
- To learn how to run Sky on your device, please see the Running a Sky application section in this document.
- To dive into examples, please see the examples directory.
Sky apps can access services from the host operating system using Mojo IPC. For
example, you can access the network using the network_service.mojom
interface.
Although you can use these low-level interfaces directly, you might prefer to
access these services via libraries in the framework. For example, the
fetch.dart
library wraps the underlying network_service.mojom
in an
ergonomic interface:
import 'package:sky/mojo/net/fetch.dart';
main() async {
Response response = await fetchBody('example.txt');
print(response.bodyAsString());
}
- Install the Dart SDK:
- Install the
adb
tool from the Android SDK:
- Install the Sky SDK:
git clone https://github.com/domokit/sky_sdk.git
- Ensure that
$DART_SDK
is set to the path of your Dart SDK andadb
(insideplatform-tools
in the android sdk) is in your$PATH
.
Currently Sky requires an Android device running the Lollipop (or newer) version of the Android operating system.
-
Enable developer mode on your device by visiting
Settings > About phone
and tapping theBuild number
field five times. -
Enable
USB debugging
inSettings > Developer options
. -
Using a USB cable, plug your phone into your computer. If prompted on your device, authorize your computer to access your device.
The sky
pub package includes a sky_tool
script to assist in running
Sky applications inside the SkyDemo.apk
harness. The sky_tool
script
expects to be run from the root directory of your application pub package. To
run one of the examples in this SDK, try:
-
cd examples/stocks
-
pub get
to set up a copy of the sky package in the app directory. -
./packages/sky/sky_tool start
to start the dev server and upload your app to the device. (NOTE: add a--install
flag to installSkyDemo.apk
if it is not already installed on the device.) -
Use
adb logcat
to view any errors or Dartprint()
output from the app.adb logcat -s chromium
can be used to filter only adb messages fromSkyDemo.apk
(which for legacy reasons still uses the android log tagchromium
).
Sky has support for generating trace files compatible with Chrome's about:tracing.
packages/sky/sky_tool start_tracing
and packages/sky/sky_tool stop_tracing
are the commands to use.
Due to https://github.com/domokit/mojo/issues/127 tracing currently requires root access on the device.
Sky uses Observatory for
debugging and profiling. While running your Sky app using sky_tool
, you can
access Observatory by navigating your web browser to http://localhost:8181/.
Although it is possible to bundle the Sky Engine in your own app (instead of running your code inside SkyDemo.apk), right now doing so is difficult.
There is one example of doing so if you're feeling brave: https://github.com/domokit/mojo/tree/master/sky/apk/stocks
Eventually we plan to make this much easier and support platforms other than Android, but that work is yet in progress.
Mojo IPC is an inter-process-communication
system designed to provide cross-thread, cross-process, and language-agnostic
communication between applications. Sky uses Mojo IPC to make it possible
to write UI code in Dart and yet depend on networking code, etc. written in
another language. Services are replicable, meaning that Dart code
written to use the network_service
remains portable to any platform
(iOS, Android, etc.) by simply providing a 'natively' written network_service
.
Embedders of the Sky Engine and consumers of the Sky Framework can use this same mechanism to expose not only existing services like the Keyboard service to allow Sky Framework Dart code to interface with the underlying platform's Keyboard, but also to expose any additional non-Dart business logic to Sky/Dart UI code.
As an example, SkyApplication
exposes a mojo network_service
(required by Sky Engine C++ code)
SkyDemoApplication
additionally exposes keyboard_service
and sensor_service
for use by the Sky
Framework from Dart.