{"id":21493540,"url":"https://github.com/alienkevin/study_spaces","last_synced_at":"2026-04-29T02:42:23.987Z","repository":{"id":97740302,"uuid":"468861646","full_name":"AlienKevin/study_spaces","owner":"AlienKevin","description":"Find study spaces at the University of Michigan, Ann Arbor","archived":false,"fork":false,"pushed_at":"2022-04-18T13:34:07.000Z","size":7444,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-03T01:12:33.259Z","etag":null,"topics":["flutter","study-space","umich"],"latest_commit_sha":null,"homepage":"https://alienkevin.github.io/study_spaces/","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AlienKevin.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-03-11T18:36:24.000Z","updated_at":"2025-03-13T11:33:59.000Z","dependencies_parsed_at":null,"dependency_job_id":"86cfd738-d57d-4f18-8d3b-18f71a119f14","html_url":"https://github.com/AlienKevin/study_spaces","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/AlienKevin/study_spaces","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlienKevin%2Fstudy_spaces","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlienKevin%2Fstudy_spaces/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlienKevin%2Fstudy_spaces/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlienKevin%2Fstudy_spaces/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AlienKevin","download_url":"https://codeload.github.com/AlienKevin/study_spaces/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlienKevin%2Fstudy_spaces/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263376155,"owners_count":23457339,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["flutter","study-space","umich"],"created_at":"2024-11-23T15:43:22.913Z","updated_at":"2026-04-29T02:42:18.949Z","avatar_url":"https://github.com/AlienKevin.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Study Spaces\n\nFind study spaces at the University of Michigan, Ann Arbor\n\n## Image Format Guidelines\n\n### File Format Requirement\n\nAll images in `images/buildings/` and `images/areas` must be JPEG files.\n\n### Image Size Recommendations\n\n* `images/buildings/*.jpeg` needs to be at least 200x200px\n* `images/areas/*.jpeg` needs to be at least 600x400px\n\n### Aspect Ratio Recommendations\n\n* `images/buildings/*.jpeg` needs an aspect ratio of 1:1 (square)\n* `images/areas/*.jpeg` needs an aspect ratio of 1.5:1 (width is 1.5 times longer than height)\n\nIf an image does not meet the above recommended aspect ratios, they will be scaled and cropped dynamically.\n\n## Generate Image Assets\n\nRun the `generate_images.sh` to convert jpeg images in `images/` folder to webp images.\nThe script then outputs the webp images to `assets/`\n\n## Generate Selected Material Icons\n\nIcon tree shaking is still not supported in Flutter Web as of Apr 6, 2022. You can track this feature\non [this Flutter GitHub issue](https://github.com/flutter/flutter/issues/57181).\nWithout tree shaking, the full `MaterialIcons-Regular.otf` weighs 1.5MB without compression and still\nweighs a whopping 515KB after compression by server. Downloading this full otf file slows down initial\npage load speed so we need to manually package only those material icons used in this project.\nWe rely on fluttericon.com to generate the custom icon font for us. To add or change the list\nof icons packaged:\n\n1. Go to fluttericon.com\n2. Drag and drop the `fluttericon_config.json` to the website\n3. Search for new icons to include or drag and drop custom SVGs to the website.\n4. Download a zip from the website\n5. Replace the `fonts/MaterialIconsSelected.ttf` and `lib/MaterialIconsSelected.dart` with the new files in the zip folder\n6. Replace the old `fluttericon_config.json` with the new one in the downloaded zip\n\n### Note\n\n1. fluttericon.com only accepts `\u003cpath\u003e` in SVG, so newer versions of material icons may need manual\n   conversion to work on fluttericon.com.\n2. Reference this guide for more details: https://medium.com/codechai/how-to-use-custom-icons-in-flutter-834a079d977\n\n## Generate App Name\n\nRun `./generate_app_name.sh` to generate new app names for Android, iOS, and Web.\n\n## Generate App and Web Icons Locally\n\n1. Install PNG compression tool pngquant\n   `brew install pngquant`\n\n2. Install ImageMagick tool\n   `brew install imagemagick`\n\n3. Put the new icons (must be 512x512) in as `assets/icon_512.png` and `assets/icon_maskable_512.png`\n\n4. See this tutorial on [maskable icons](https://web.dev/maskable_icon/). You should also test your\n   maskable icons using [this online tool](https://maskable.app/).\n\n5. Run `generate_icons.sh`. You can only run this script *once* on the new icons!\n   Running multiple times may *increase* the size of the icons because of repeated redundant compression.\n\n## \\[Deprecated Method\\] Generate App and Web Icons with Web Tools\n\n\u003cdetails\u003e\n\u003csummary\u003eSee More\u003c/summary\u003e\n\n### Generate Web Icons\n\nIcon location: `web/icons/icon_192.png` and `web/icons/icon_512.png`\n\nTool: https://appiconmaker.co/Home\n\nYou can generate and download `icon_192.png` and `icon_512.png` under the Android section\n\n### Test PWA Maskable Icons\n\nIcon location: `web/icons/icon_maskable_192.png` and `web/icons/icon_maskable_512.png`\n\nTool: https://maskable.app/\n\nTutorial: https://web.dev/maskable_icon/\n\n### Generate Favicon\n\nIcon location: `web/favicon.png`\n\nTool: https://realfavicongenerator.net/\n\n### Update Splash Icon\n\nIcon location: `assets/splash.png`\n\nCopy `icon_512.png` to the above location and rename it to `splash.png`.\n\n\u003c/details\u003e","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falienkevin%2Fstudy_spaces","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falienkevin%2Fstudy_spaces","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falienkevin%2Fstudy_spaces/lists"}