-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migrated hardcoded strings to strings.dart #61
Conversation
@ashwinkey04 is it proper? |
Yes it looks good. I will give it one last sanity check by building it locally and then will merge the PR. Thanks for contributing :) |
Okay @ashwinkey04 ! |
sure @ashwinkey04 |
Done @ashwinkey04 |
The changes to strings.dart seems to have been lost. Could you re-check the commit? |
@ashwinkey04 apologies for that please check now made a new commit |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixing these would be good enough to go
@@ -1,8 +1,8 @@ | |||
import 'package:flutter/material.dart'; | |||
import 'package:flutter/widgets.dart'; | |||
import 'package:raag/model/strings.dart'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This seems to be a duplicate import
lib/view/download_music.dart
Outdated
@@ -233,7 +232,7 @@ class _DownloadMusicState extends State<DownloadMusic> { | |||
leading: IconButton( | |||
icon: Icon(Icons.arrow_back_ios_outlined), | |||
onPressed: () => Navigator.pop(context)), | |||
title: Text("Download music", | |||
title: Text(downlaodMusic, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you also fix this typo
done @ashwinkey04 |
Awesome, merging it! |
#35