Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rendering.md
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ import 'package:flutter/rendering.dart';

void main() {
scheduler.addPersistentFrameCallback((_) {
FlutterBinding.instance.debugDumpRenderTree();
debugDumpRenderTree();
});
}
```
2 changes: 1 addition & 1 deletion tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ class MyButton extends IconButton {
```dart
Widget build(BuildContext context) {
return new MyButton(
child: new ShrinkWrapWidth(
child: new IntrinsicWidth(
child: new Row([
new NetworkImage(src: 'thumbs-up.png', width: 25.0, height: 25.0),
new Container(
Expand Down