ToPWR to aplikacja mobilna stworzona przez studentów dla studentów Politechniki Wrocławskiej. Licznik dni do sesji, mapka kampusu, informacje o dziekanatach, kółkach naukowych i licznik wolnych miejsc parkingowych na żywo - wszystko, co trzeba w jednym miejscu. Life made easy. 🚀
ToPWR to efekt naszych doświadczeń i pomysłów, którymi chcielibyśmy się podzielić z innymi studentami. Bo przecież każdy z nas zaczynał od zera, więc dlaczego by nie stworzyć czegoś, co ułatwiłoby życie na uczelni? Zależało nam, żeby każdy student miał w kieszeni takiego kumpla, co go wspiera i pomaga ogarnąć to wszystko. Bo studia to nie tylko nauka, to też odkrywanie, poznawanie, czasem trochę gubienie się i to jest w porządku.
ToPWR is a mobile application created by students for students of Wrocław University of Science and Technology. A countdown to exams, a campus map, information about dean's offices, student science clubs and live free parking places counter – everything you need in one place. Life made easy. 🚀
ToPWR is the result of our experiences and ideas that we want to share with other students. After all, each of us started from scratch, so why not create something that would make university life easier? We wanted every student to have a friend in their pocket, supporting and helping them manage everything. Because university is not just about studying; it's also about discovering, meeting new people, sometimes getting a little lost, and that's okay.
It was initially created by KN Solvro members in native mobile technologies (Android & iOS) and Strapi backend back in 2022 (v0.5.1 was released in 3.10.2022).
Now we're redesigning and remaking it with fascinating new features in Flutter and Directus CMS, and we're coming close to our first release 🚀. Stay tuned 😎.
- @AleksaZakrzewska - Project Manager
- @simon-the-shark - Flutter Techlead
- @mikolaj-jalocha - Flutter Developer
- @gry-mar - Flutter Developer, UI/UX Designer
- @kamilfedio - Flutter Developer
We're using many UI/UX/graphic designs and assets made by @domkakromka, @AniaM727
Read more at: https://solvro.pwr.edu.pl/portfolio/to-pwr
- Flutter
- Riverpod
- Freezed
- graphql_codegen
- Dio
- google_maps_flutter
- fl_chart
- https://www.figma.com/file/33ofdGYbBzWvDi2MabxIc1/ToPWR-(imported)?type=design&node-id=2%3A2091&mode=design&t=qILflhzpbN8xW8F6-1
- https://solvro.pwr.edu.pl/blog/fix-flutter-android-back-btn
Recommended flutter version: Channel stable, 3.24.0
-
There are google maps api keys already defined, but their usage is restricted on Google Maps Panel to specific package/bundle ids. Web key is restricted for localhost usage only
On Android, apart from package id, restriction is for specific signing key's SHA1 fingerprints. So to test on Android, your debug signing key's fingerprint must be added to the maps panel. (Contact @simon-the-shark to include yours)
Instuctions pasted from Google Maps Panel:
For Linux or macOS:
keytool -list -v -keystore ~/.android/debug.keystore -alias androiddebugkey -storepass android -keypass android
For Windows:
keytool -list -v -keystore "%USERPROFILE%\.android\debug.keystore" -alias androiddebugkey -storepass android -keypass android
keytool -list -v -keystore your_keystore_name -alias your_alias_name
API_URL="https://<our-server-url>/graphql"
ASSETS_URL="https://<our-server-url>/assets"
IPARKING_URL="https://<secret parking's source>.pl"
If you need our server url please write us an email kn.solvro@pwr.edu.pl or contact us via our website
- Some of app's dependecies utilize code generation feature and generated files are not currently included to control version and this github repository, so before building, running or developing application, it's crucial to run code generation (to generate all needed files) in terminal with:
- For one-time generation:
dart run build_runner build
OR
- For watch mode and continous necessary rebuilds after every change to connected files (usufull for development):
dart run build_runner watch
- If something doesn't build correctly, this might help:
dart run build_runner build -d
-
Rebuilds are necessary after any updates or changes to affected files (
watch
command does it for you)
- Either with your IDE or
- from Terminal:
flutter run
- [OPTIONAL] If you operate on many Flutter versions, I reccomend to you
fvm
Flutter version manager: https://fvm.app/
fvm dart run build_runner watch
fvm flutter run
// etc...
- App's custom theme usage instructions: https://github.com/Solvro/topwr-mobile/tree/main/lib/theme
- Introductions to internationalizing flutter apps (making them available in different languages): https://docs.flutter.dev/ui/accessibility-and-internationalization/internationalization
- Api helper module instructions: https://github.com/Solvro/topwr-mobile/tree/main/lib/api_base
- We use
flutter_gen
for generating asset paths: https://pub.dev/packages/flutter_gen - For unified names read and follow: taxonomy.md
- For navigation we use
auto_route
, docs here: https://pub.dev/packages/auto_route
- run the linter
flutter analyze
- if you have any problems listed, try to autofix with
dart fix --apply
- run
analyze
again, if problems still persist, correct them manually. If you disagree with some of the rules, we can still discuss and adjust them. Hit me up @simon-the-shark or open an issue. - run formatter
dart format .
Don't worry if you've forgotten about the steps, automatic gh action will run the checks for you and notify if somthing's wrong.
https://docs.google.com/document/d/1Sb5lYqYLnYuecS1Essn3YwietsbuLPCTsTuW0EMpG5o/edit?usp=sharing
Connecting to Github(Gh) repository via SSH on Windows, tutorial: https://www.youtube.com/watch?v=vExsOTgIOGw
- git checkout main -> checkout main branch
- git pull origin main -> pull current changes from main branch
- git fetch -> be up to date with remote branches
- git checkout -b MOBILE-x_my_feature_branch -> x - stands for issue number; it is going to checkout and create new branch name MOBILE-x_my_feature_branch (... working on the feature, we are still on our branch named MOBILE-x_my_feature_branch)
- git add . -> add all changes we have made
- git commit -m "My changes description" -> commit made changes with proper description
- git push origin MOBILE-x_my_feature_branch -> pushing our changes to remote branch
- On Github we are going to make Pull Request (PR) from our remote branch
- Do not push directly to main branch!!! This is bad practice!
- local branch - is our branch on our computer not on the server if we do some chagnes and do checkout to diffrent branch without saving them(commiting) we might loose them, commit before checkout to different branch!
- remote branch - this is branch with our code in github's servers
- After code review which was successful, we can merge from our feature branch to main branch. After merging we should clean after ourself.
- git branch -d MOBILE-x_my_feature_branch -> deletes our local branch
- git push origin --delete MOBILE-x_my_feature_branch -> delete our remote branch