Skip to content

Commit

Permalink
chore: avoid unnecessary interpolation
Browse files Browse the repository at this point in the history
  • Loading branch information
felipecastrosales committed Jan 21, 2023
1 parent 241d83b commit 49f9865
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/home/home_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,7 @@ class _HomePageState extends State<HomePage> {
final title = quiz.title;
final questions = quiz.questions;
final image = quiz.image;
final completed =
'${questionAnswered}/${questionLength}';
final completed = '$questionAnswered/$questionLength';

return QuizCardWidget(
image: image,
Expand Down

0 comments on commit 49f9865

Please sign in to comment.