Closed justkawal closed 4 years ago
You must zip your (name)_clock and flutter_clock_helpers in the same folder.
We should run the below commands after unzip (project).zip
because the below 2 folders are zipped already but on the flutter.dev/clock it is not mentioned
unzip (name)_clock.zip
unzip flutter_clock_helper.zip
d. In your
What about licensing then? We should have MIT
or Apache 2.0
as a license for our submission, but can we still include flutter_clock_helper
- it doesn't have a license file itself, and I do not recognize the license of its parent folder by its text.
Right. You should end up with something like: /my_project/flutter_clock_helper (unedited) /my_project/my_clock (your clock)
Zip up my_project. Then, the instructions should work. The goal is just to make sure it's not difficult for the judges to figure out how to run your project.
@secretwpn flutter_clock_helper
is covered by https://github.com/flutter/flutter_clock/blob/master/LICENSE
flutter channel stable
flutter upgrade
unzip (project).zip
cd (name)_clock
flutter create .
flutter run
After the 3rd Command i.e. ( unzip (project).zip )
we should run
cd <project>/<name>_clock
Is this right or I am doing something wrong?
@talhakhan1297 yes, you are right.
In your (name)_clock directory, reduce the clock’s size.
In your (path-to-repo)/flutter_clock folder, zip these two folders:
Verify that your (project).zip file works, using the following steps:
flutter channel stable
flutter upgrade
unzip (project).zip
cd (name)_clock
flutter create .
flutter run (on Android or iOS in landscape)
After the 3rd Command i.e. (
unzip (project).zip
) we should rununzip (name)_clock.zip
unzip flutter_clock_helper.zip
As we have already zipped the flutter_clock_helper and (name)_clock inside (path-to-repo)/flutter_clock
Am I going right ?