mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
53 lines
1.3 KiB
Dart
53 lines
1.3 KiB
Dart
// 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: Shape.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(circles, scrollDirection: ScrollDirection.horizontal)
|
|
)
|
|
);
|
|
}
|
|
}
|
|
|
|
void main() {
|
|
runApp(new HorizontalScrollingApp());
|
|
}
|