Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
letsar committed Aug 31, 2018
1 parent 4fa605a commit 89c56f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions lib/src/widgets/slide_action.dart
Expand Up @@ -131,8 +131,7 @@ class IconSlideAction extends ClosableSlideAction {
final Text textWidget = new Text(
caption ?? '',
overflow: TextOverflow.ellipsis,
style: Theme
.of(context)
style: Theme.of(context)
.primaryTextTheme
.caption
.copyWith(color: foregroundColor),
Expand Down
3 changes: 1 addition & 2 deletions test/flutter_slidable_test.dart
Expand Up @@ -81,8 +81,7 @@ Widget buildTest(
return new ListView(
scrollDirection: scrollDirection,
itemExtent: itemExtent,
children: List
.generate(5, (int index) => buildSlidableWidget(index))
children: List.generate(5, (int index) => buildSlidableWidget(index))
.toList(),
);
},
Expand Down

0 comments on commit 89c56f6

Please sign in to comment.