Skip to content

Commit ba4c2e1

Browse files
authored
Merge pull request Sub6Resources#558 from tneotia/bugfix/example-app-errors
Fix example app errors due to Sub6Resources#541
2 parents 6ce25f6 + baf9874 commit ba4c2e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

example/lib/main.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,10 +167,10 @@ class _MyHomePageState extends State<MyHomePage> {
167167
// Custom placeholder image for broken links
168168
networkSourceMatcher(): networkImageRender(altWidget: (_) => FlutterLogo()),
169169
},
170-
onLinkTap: (url) {
170+
onLinkTap: (url, _, __, ___) {
171171
print("Opening $url...");
172172
},
173-
onImageTap: (src) {
173+
onImageTap: (src, _, __, ___) {
174174
print(src);
175175
},
176176
onImageError: (exception, stackTrace) {

0 commit comments

Comments
 (0)