Skip to content
This repository has been archived by the owner on Feb 22, 2023. It is now read-only.

[url_launcher] Adds lint ignores to the usage of RouteInformation.location #7133

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,10 @@ class _RouteDelegate extends RouterDelegate<RouteInformation>
if (_history.isEmpty) {
return const Placeholder(key: Key('empty'));
}
// TODO(chunhtai): remove the ignore once the following line can migrate to
// use RouteInformation.uri after the issue is resolved.
// https://github.com/flutter/flutter/issues/100624.
// ignore: unnecessary_string_interpolations, deprecated_member_use
stuartmorgan marked this conversation as resolved.
Show resolved Hide resolved
return Placeholder(key: Key('${_history.last.location}'));
}
}