sample_page.md.template 862 Bytes
Newer Older
1
---
2
layout: page
3
title: "@(title)"
4
permalink: /catalog/samples/@(link)/
5
---
6 7 8

@(summary)

9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
<p>
  <div class="container-fluid">
    <div class="row">
      <div class="col-md-4">
        <div class="panel panel-default">
          <div class="panel-body" style="padding: 16px 32px;">
            <img style="border:1px solid #000000" src="@(android screenshot)" alt="Android screenshot" class="img-responsive">
          </div>
          <div class="panel-footer">
            Android screenshot
          </div>
        </div>
      </div>
    </div>
  </div>
</p>

26 27
@(description)

28
Try this app out by creating a new project with `flutter create` and replacing the contents of `lib/main.dart` with the code that follows.
29

30
```dart
31 32
@(source)
```
33 34 35 36

<h2>See also:</h2>
@(see also)
- The source code in [@(path)](https://github.com/flutter/flutter/blob/master/@(path)).