// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

import 'package:flutter/widgets.dart';

class Circle extends StatelessComponent {
  Circle({ this.margin: EdgeDims.zero });

  final EdgeDims margin;

  Widget build(BuildContext context) {
    return new Container(
      width: 50.0,
      margin: margin + new EdgeDims.symmetric(horizontal: 2.0),
      decoration: new BoxDecoration(
        shape: BoxShape.circle,
        backgroundColor: const Color(0xFF00FF00)
      )
    );
  }
}

class HorizontalScrollingApp extends StatelessComponent {
  Widget build(BuildContext context) {
    List<Widget> circles = <Widget>[
      new Circle(margin: new EdgeDims.only(left: 10.0)),
      new Circle(),
      new Circle(),
      new Circle(),
      new Circle(),
      new Circle(),
      new Circle(),
      new Circle(),
      new Circle(),
      new Circle(),
      new Circle(),
      new Circle(margin: new EdgeDims.only(right: 10.0)),
    ];

    return new Center(
      child: new Container(
        height: 50.0,
        child: new Block(children: circles, scrollDirection: Axis.horizontal)
      )
    );
  }
}

void main() {
  runApp(new HorizontalScrollingApp());
}