Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions _includes/header.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<header class="site-header">
<div class="wrapper">
<a class="site-title" href="{{ site.baseurl }}/">{{ site.title }}</a>
<span class="project-status">(tech preview)</span>
<nav class="site-nav">
<a href="#" class="menu-icon">
<svg viewBox="0 0 18 15">
Expand Down
7 changes: 7 additions & 0 deletions _sass/_layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@

// Positioning context for the mobile navigation icon
position: relative;

.project-status {
font-size: 14px;
line-height: 56px;
color: $grey-color-light;
}
}

.site-title {
Expand All @@ -17,6 +23,7 @@
letter-spacing: -1px;
margin-bottom: 0;
float: left;
margin-right: 9px;

&,
&:visited {
Expand Down
7 changes: 5 additions & 2 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,11 @@ today. We hope you try it out and send us

## Getting started

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

## Next steps

Expand Down
19 changes: 13 additions & 6 deletions setup.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,9 @@
---
layout: page
title: Flutter Setup
nav_title: Flutter Setup
permalink: /setup/
---

(Please remember, Flutter is in _technology preview_. Thanks
for trying it out, and please don't hesitate to
[file issues or bugs](https://github.com/flutter/flutter/issues/new)
for us.)

This guide describes how to set up your development environment to run Flutter apps on
iOS or Android.

Expand Down Expand Up @@ -117,6 +111,14 @@ $ flutter doctor
The first time your run the `flutter` command, it will download its dependencies and compile
itself. Subsequent runs should be much faster.

If `flutter doctor` prints all checkmarks (`[✓]`), then you are cleared
for takeoff!

If `flutter doctor` displays one or more errors (`[x]`), then one or more
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note: it doesn't display [x]'s - just

  • [✓] (A-OK)
  • [-] (partially installed)
  • [ ] (not installed)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ah, thanks! will fix

of your dependencies is misconfigured or missing. If you can't resolve it,
please [file an issue](https://github.com/flutter/flutter/issues/new)
and we'll be happy to help.

## Atom editor

We recommend using [Atom](https://atom.io/) for editing, running, and debugging Flutter apps.
Expand All @@ -139,3 +141,8 @@ Before creating your Flutter project in Atom, you’ll need to perform these pre
root directory where you installed the Flutter SDK.
3. Open **Packages > Dart > Package Settings**, and set the **Dart SDK Location** field to the
`bin/cache/dart-sdk` directory in your Flutter SDK’s root folder.

## Next steps

Now, follow our [Getting Started guide](/getting-started/)
to run your first Flutter app on iOS and Android.