File tree Expand file tree Collapse file tree 3 files changed +2
-6
lines changed Expand file tree Collapse file tree 3 files changed +2
-6
lines changed Original file line number Diff line number Diff line change 2
2
3
3
Mimics a real world use-case of embedding Flutter into an existing Android app
4
4
and demonstrates using [ Pigeon] ( https://pub.dev/packages/pigeon ) to communicate
5
- between Fluter and the host application.
5
+ between Flutter and the host application.
6
6
7
7
## Description
8
8
Original file line number Diff line number Diff line change @@ -165,8 +165,6 @@ class HostBookApi {
165
165
message: error['message' ] as String ? ,
166
166
details: error['details' ],
167
167
);
168
- } else {
169
- return ;
170
168
}
171
169
}
172
170
@@ -190,8 +188,6 @@ class HostBookApi {
190
188
message: error['message' ] as String ? ,
191
189
details: error['details' ],
192
190
);
193
- } else {
194
- return ;
195
191
}
196
192
}
197
193
}
Original file line number Diff line number Diff line change @@ -147,7 +147,7 @@ class StubData {
147
147
148
148
static const reviewStrings = < String > [
149
149
'My favorite place in Portland. The employees are wonderful and so is the food. I go here at least once a month!' ,
150
- 'Staff was very friendly. Great atmosphere and good music. Would reccommend .' ,
150
+ 'Staff was very friendly. Great atmosphere and good music. Would recommend .' ,
151
151
'Best. Place. In. Town. Period.'
152
152
];
153
153
}
You can’t perform that action at this time.
0 commit comments