Skip to content

Commit ee98332

Browse files
committed
fix typo
1 parent 095af1f commit ee98332

File tree

4 files changed

+26
-8
lines changed

4 files changed

+26
-8
lines changed

_includes/header.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<header class="site-header">
22
<div class="wrapper">
33
<a class="site-title" href="{{ site.baseurl }}/">{{ site.title }}</a>
4+
<span class="project-status">(tech preview)</span>
45
<nav class="site-nav">
56
<a href="#" class="menu-icon">
67
<svg viewBox="0 0 18 15">

_sass/_layout.scss

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@
99

1010
// Positioning context for the mobile navigation icon
1111
position: relative;
12+
13+
.project-status {
14+
font-size: 14px;
15+
line-height: 56px;
16+
color: $grey-color-light;
17+
}
1218
}
1319

1420
.site-title {
@@ -17,6 +23,7 @@
1723
letter-spacing: -1px;
1824
margin-bottom: 0;
1925
float: left;
26+
margin-right: 9px;
2027

2128
&,
2229
&:visited {

index.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,11 @@ today. We hope you try it out and send us
1616

1717
## Getting started
1818

19-
Check out our [Getting started guide](getting-started)
20-
to install Flutter and run your first app on Android and iOS.
19+
First, [set up your machine](/setup/)
20+
with Flutter and iOS/Android tools.
21+
Then, check out our
22+
[Getting Started guide](getting-started)
23+
to run your first app on Android and iOS.
2124

2225
## Next steps
2326

setup.md

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,9 @@
11
---
22
layout: page
33
title: Flutter Setup
4-
nav_title: Flutter Setup
54
permalink: /setup/
65
---
76

8-
(Please remember, Flutter is in _technology preview_. Thanks
9-
for trying it out, and please don't hesitate to
10-
[file issues or bugs](https://github.com/flutter/flutter/issues/new)
11-
for us.)
12-
137
This guide describes how to set up your development environment to run Flutter apps on
148
iOS or Android.
159

@@ -117,6 +111,14 @@ $ flutter doctor
117111
The first time your run the `flutter` command, it will download its dependencies and compile
118112
itself. Subsequent runs should be much faster.
119113
114+
If `flutter doctor` prints all checkmarks (`[✓]`), then you are cleared
115+
for takeoff!
116+
117+
If `flutter doctor` displays one or more errors (`[x]`), then one or more
118+
of your dependencies is misconfigured or missing. If you can't resolve it,
119+
please [file an issue](https://github.com/flutter/flutter/issues/new)
120+
and we'll be happy to help.
121+
120122
## Atom editor
121123
122124
We recommend using [Atom](https://atom.io/) for editing, running, and debugging Flutter apps.
@@ -139,3 +141,8 @@ Before creating your Flutter project in Atom, you’ll need to perform these pre
139141
root directory where you installed the Flutter SDK.
140142
3. Open **Packages > Dart > Package Settings**, and set the **Dart SDK Location** field to the
141143
`bin/cache/dart-sdk` directory in your Flutter SDK’s root folder.
144+
145+
## Next steps
146+
147+
Now, follow our [Getting Started guide](/getting-started/)
148+
to run your first Flutter app on iOS and Android.

0 commit comments

Comments
 (0)