// 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:sky/widgets.dart';import'package:sky/theme/colors.dart'ascolors;classBigCircleAppextendsApp{Widgetbuild(){returnnewContainer(padding:newEdgeDims.all(50.0),decoration:newBoxDecoration(shape:Shape.circle,border:newBorder.all(width:10.0,color:constColor(0x80FF00FF)),backgroundColor:colors.Teal[600]));}}voidmain(){runApp(newBigCircleApp());}