Skip to content

Commit

Permalink
check rows content
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikita Teplyakov committed Aug 18, 2018
1 parent 217e7a8 commit dc2dd9f
Show file tree
Hide file tree
Showing 5 changed files with 91 additions and 52 deletions.
20 changes: 20 additions & 0 deletions .vscode/launch.json
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,20 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [

{
"name": "Flutter",
"type": "dart",
"request": "launch",
"program": "${workspaceFolder}/lib/main.dart"
},
{
"name": "Flutter",
"request": "launch",
"type": "dart"
}
]
}
2 changes: 1 addition & 1 deletion lib/list/list_view.dart
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class ItemsListView extends StatelessWidget {
child: new Container ( child: new Container (
padding: const EdgeInsets.all(2.0), padding: const EdgeInsets.all(2.0),
color: new Color(0x33000000), color: new Color(0x33000000),
child: new Text(item), child: new Text(item, key: new Key("row_$index")),
), ),
); );
} }
Expand Down
Loading

0 comments on commit dc2dd9f

Please sign in to comment.