blob: 67707d95c83b22f7dccc0cebf837751c57ecbccd [file]
// Copyright 2014 The Flutter 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 'basic.dart';
import 'framework.dart';
class Placeholder extends StatelessWidget {
final Color color;
final double strokeWidth;
final double fallbackWidth;
final double fallbackHeight;
const Placeholder({
Key key,
this.color = const Color(0xFF455A64), // Blue Grey 700
this.strokeWidth = 2.0,
this.fallbackWidth = 400.0,
this.fallbackHeight = 400.0,
}) : super(key: key);
}