Skip to content

Commit

Permalink
Fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
KingWu committed May 3, 2019
1 parent 27d9248 commit 5bdbaab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/app/ui/page/AppDetailPage.dart
Expand Up @@ -240,10 +240,10 @@ class _AppDetailPageState extends State<AppDetailPage> {
itemCount: length,
scrollDirection: Axis.horizontal,
shrinkWrap: true,
separatorBuilder: (BuildContext context int index){
separatorBuilder: (BuildContext context, int index){
return Container(width: 12);
},
itemBuilder: (BuildContext context int index){
itemBuilder: (BuildContext context, int index){
double left = 0 == index ? 20 : 0;
double right = length - 1 == index ? 20 : 0;
String url = appContent.screenshotUrls[index];
Expand Down

0 comments on commit 5bdbaab

Please sign in to comment.