@@ -7,7 +7,7 @@ Sky apps are written in Dart. To get started, we need to set up Dart SDK:
77 - Ensure that ` $DART_SDK ` is set to the path of your Dart SDK and that the
88 ` dart ` and ` pub ` executables are on your ` $PATH ` .
99
10- Once you have installed Dart SDK, create a new directory and adding a
10+ Once you have installed Dart SDK, create a new directory and add a
1111[ pubspec.yaml] ( https://www.dartlang.org/tools/pub/pubspec.html ) :
1212
1313``` yaml
@@ -16,14 +16,14 @@ dependencies:
1616 sky : any
1717` ` `
1818
19- Next, create a ` lib` directory (where your Dart code will go) and use the `pub`
20- tool to fetch the Sky package and its dependencies :
19+ Next, create a ` lib` directory (which is where your Dart code will go) and use
20+ the `pub` tool to fetch the Sky package and its dependencies :
2121
2222 - ` mkdir lib`
2323 - ` pub get && pub run sky:init`
2424
25- Currently Sky assumes the entry point for your application is a `main` function
26- in `lib/main.dart` :
25+ Sky assumes the entry point for your application is a `main` function in
26+ `lib/main.dart` :
2727
2828` ` ` dart
2929import 'package:sky/widgets/basic.dart';
@@ -40,7 +40,7 @@ void main() {
4040` ` `
4141
4242Execution starts in `main`, which runs a new instance of the `HelloWorldApp`.
43- The `HelloWorldApp` builds a `Text` widget containing the famous _Hello , world!_
43+ The `HelloWorldApp` builds a `Text` widget containing the famous `Hello , world!`
4444string and centers it on the screen using a `Center` widget. To learn more about
4545the widget system, please see the [widgets tutorial](lib/widgets/README.md).
4646
@@ -51,7 +51,7 @@ Currently Sky requires an Android device running the Lollipop (or newer) version
5151of the Android operating system.
5252
5353 - Install the `adb` tool from the [Android SDK](https://developer.android.com/sdk/installing/index.html)
54- and ensure that `adb (inside `platform-tools` in the Android SDK) is in your
54+ and ensure that `adb` (inside `platform-tools` in the Android SDK) is in your
5555 ` $PATH` .
5656
5757 - Enable developer mode on your device by visiting `Settings > About phone`
0 commit comments