-
Notifications
You must be signed in to change notification settings - Fork 148
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
System for Less Redundant Initialisation of Variables #357
Comments
Hey, I can work on this. I have previously worked on similar stuff, please assign |
Hey @M4dhav, reduce as much redundancy in initializations as you can. Make sure to write clean and organised thinking at each step what code be made better to the system you design to add a better value to the project. |
Hey I have merged a PR please pull before working further and make sure to work on the dev branch |
Hey new PR merged please pull before moving forward |
hey!!! is the isssue open ? i would love to work on it |
@vanshambansal I am working on the issue |
🚀 The feature
Currently many redundant variables are being initialised in different files. A system should be established which initialises variables only once and other files just use the reference of that variables initialised in that file
Take example of the Explore Controller written and initialised only once globally in the explore_controller.dart and the profile_screen.dart and explore_screen.dart just use that reference after importing explore_controller.dart in them
Get rid of all redundant initialisations and achieve the as explained desired state
Motivation, pitch
Having less to no redundant initialisations would avoid the extra use of memory required why running the app thus boosting its performance
The text was updated successfully, but these errors were encountered: