File tree 1 file changed +14
-16
lines changed
1 file changed +14
-16
lines changed Original file line number Diff line number Diff line change @@ -1075,10 +1075,9 @@ steps:
1075
1075
@override
1076
1076
initState() {
1077
1077
super.initState();
1078
- _pullRequests =
1079
- widget.gitHub.pullRequests
1080
- .list(RepositorySlug('flutter', 'flutter'))
1081
- .toList();
1078
+ _pullRequests = widget.gitHub.pullRequests
1079
+ .list(RepositorySlug('flutter', 'flutter'))
1080
+ .toList();
1082
1081
}
1083
1082
1084
1083
late Future<List<PullRequest>> _pullRequests;
@@ -1124,19 +1123,18 @@ steps:
1124
1123
if (state.mounted) {
1125
1124
return showDialog(
1126
1125
context: state.context,
1127
- builder:
1128
- (context) => AlertDialog(
1129
- title: const Text('Navigation error'),
1130
- content: Text('Could not launch $url'),
1131
- actions: <Widget>[
1132
- TextButton(
1133
- onPressed: () {
1134
- Navigator.of(context).pop();
1135
- },
1136
- child: const Text('Close'),
1137
- ),
1138
- ],
1126
+ builder: (context) => AlertDialog(
1127
+ title: const Text('Navigation error'),
1128
+ content: Text('Could not launch $url'),
1129
+ actions: <Widget>[
1130
+ TextButton(
1131
+ onPressed: () {
1132
+ Navigator.of(context).pop();
1133
+ },
1134
+ child: const Text('Close'),
1139
1135
),
1136
+ ],
1137
+ ),
1140
1138
);
1141
1139
}
1142
1140
}
You can’t perform that action at this time.
0 commit comments