Delete fail.dart (#6699)

I think we must have accidentally checked this in some time.
This commit is contained in:
Ian Hickson 2016-11-03 14:39:39 -07:00 committed by GitHub
parent 7e6aa6de3a
commit a7debdc72f

View File

@ -1,24 +0,0 @@
import 'package:flutter/material.dart';
class LimitDemo extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new Scaffold(
appBar: new AppBar(
title: new Text('LimitedBox test')
),
body: new Block(
children: <Widget>[
new LimitedBox(
maxWidth: 100.0,
maxHeight: 100.0,
child: new Container(
decoration: new BoxDecoration(backgroundColor: const Color(0xFF00FF00))
)
)
]
)
);
}
}