diff --git a/examples/flutter_gallery/lib/demo/fail.dart b/examples/flutter_gallery/lib/demo/fail.dart deleted file mode 100644 index 049a1b161b0..00000000000 --- a/examples/flutter_gallery/lib/demo/fail.dart +++ /dev/null @@ -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: [ - new LimitedBox( - maxWidth: 100.0, - maxHeight: 100.0, - child: new Container( - decoration: new BoxDecoration(backgroundColor: const Color(0xFF00FF00)) - ) - ) - ] - ) - ); - } -}