| OLD | NEW |
| 1 | 1 |
| 2 import 'package:vector_math/vector_math.dart'; | 2 import 'package:vector_math/vector_math.dart'; |
| 3 | 3 |
| 4 import '../rendering/block.dart'; | 4 import '../rendering/block.dart'; |
| 5 import '../rendering/box.dart'; | 5 import '../rendering/box.dart'; |
| 6 import '../rendering/flex.dart'; | 6 import '../rendering/flex.dart'; |
| 7 import '../rendering/object.dart'; | 7 import '../rendering/object.dart'; |
| 8 import '../rendering/paragraph.dart'; | 8 import '../rendering/paragraph.dart'; |
| 9 import '../rendering/stack.dart'; | 9 import '../rendering/stack.dart'; |
| 10 import 'ui_node.dart'; | 10 import 'ui_node.dart'; |
| (...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 381 root.src = src; | 381 root.src = src; |
| 382 root.requestedSize = size; | 382 root.requestedSize = size; |
| 383 } | 383 } |
| 384 | 384 |
| 385 void insert(RenderObjectWrapper child, dynamic slot) { | 385 void insert(RenderObjectWrapper child, dynamic slot) { |
| 386 assert(false); | 386 assert(false); |
| 387 // Image does not support having children currently | 387 // Image does not support having children currently |
| 388 } | 388 } |
| 389 | 389 |
| 390 } | 390 } |
| OLD | NEW |