From a7debdc72fd55b56da68f00a8cd549577ff786b2 Mon Sep 17 00:00:00 2001 From: Ian Hickson Date: Thu, 3 Nov 2016 14:39:39 -0700 Subject: [PATCH] Delete fail.dart (#6699) I think we must have accidentally checked this in some time. --- examples/flutter_gallery/lib/demo/fail.dart | 24 --------------------- 1 file changed, 24 deletions(-) delete mode 100644 examples/flutter_gallery/lib/demo/fail.dart 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)) - ) - ) - ] - ) - ); - } -}