Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iampawan/gdg-devfest-app
An App Template For GDG DevFest
https://github.com/iampawan/gdg-devfest-app
android app devfest flutter gdg ios
Last synced: 7 days ago
JSON representation
An App Template For GDG DevFest
- Host: GitHub
- URL: https://github.com/iampawan/gdg-devfest-app
- Owner: iampawan
- License: other
- Created: 2019-07-31T11:03:00.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-10-01T04:17:21.000Z (about 4 years ago)
- Last Synced: 2024-10-19T02:47:00.432Z (18 days ago)
- Topics: android, app, devfest, flutter, gdg, ios
- Language: Dart
- Size: 1.08 MB
- Stars: 639
- Watchers: 31
- Forks: 273
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# GDG DEVFEST APP [![Codemagic build status](https://api.codemagic.io/apps/5d4af19b36524a001caa407a/5d4af19b36524a001caa4079/status_badge.svg)](https://codemagic.io/apps/5d4af19b36524a001caa407a/5d4af19b36524a001caa4079/latest_build) [![Build Status](https://travis-ci.org/iampawan/GDG-DevFest-App.svg?branch=master)](https://travis-ci.org/iampawan/GDG-DevFest-App)
## đ¸ ScreenShots
| Light Theme | Dark Theme |
| :----------------------------------: | :----------------------------------: |
| ![](https://i.imgur.com/ipUdGyk.png) | ![](https://i.imgur.com/u1rCsZ8.png) |
| ![](https://i.imgur.com/rujH2xz.png) | ![](https://i.imgur.com/gOx5T8H.png) |
| ![](https://i.imgur.com/RubqN3Z.png) | ![](https://i.imgur.com/D2Ucb2t.png) |### Show some :heart: and star the repo to support the project
## Overview
DevFest Mobile application is for all the GDG Devfests around the world. You can see the agenda in the app as well as the speakers and other updates regarding the devfest.
## Technology Stack
- Flutter
- Flutter Bloc
- Firebase (Upcoming)## Getting Started
1. [Fork repository](https://github.com/iampawan/GDG-DevFest-App/fork) and clone your fork locally
1. Install [Flutter 1.7.8](https://flutter.dev/docs/get-started/install)
1. Install [Android Studio / IntelliJ / VSCode](https://flutter.dev/docs/development/tools/android-studio)
1. [Preparing Release for Android](https://flutter.dev/docs/deployment/android)
1. [Preparing Release for iOS](https://flutter.dev/docs/deployment/ios)## Building the project
### Missing Key.Properties file
If you try to build the project straight away, you'll get an error complaining that a `key.properties` file is missing and Exit code 1 from: /GDG-DevFest-App-master/android/gradlew app:properties:. To resolve that,
1. Open [GDG-DevFest-App-master\android\app\build.gradle](https://github.com/iampawan/GDG-DevFest-App/blob/master/android/app/build.gradle) file and comment following lines-
```
//keystoreProperties.load(new FileInputStream(keystorePropertiesFile))signingConfigs {
// release {
// keyAlias keystoreProperties['keyAlias']
// keyPassword keystoreProperties['keyPassword']
// storeFile file(keystoreProperties['storeFile'])
// storePassword keystoreProperties['storePassword']
// }
}
buildTypes {
// release {
// signingConfig signingConfigs.release
// }
}
```1. Open [GDG-DevFest-App-master\lib\utils\devfest.dart](https://github.com/iampawan/GDG-DevFest-App/blob/master/lib/utils/devfest.dart) file and customise the texts according to your needs. Eg-
```
static const String app_name = âDevfestâ;
static const String app_version = âVersion 1.0.4â;
static const int app_version_code = 1;//* Texts
static const String welcomeText = âWelcome to GDG DevFestâ;
static const String descText =
âââDevFests are community-led, developer events hosted by GDG chapters around the globe focused on community building & learning about Googleâs technologies. Each DevFest is inspired by and uniquely tailored to the needs of the developer community and region that hosts it.âââ;//* ActionTexts
static const String agenda_text = âAgendaâ;
static const String speakers_text = âSpeakersâ;
static const String team_text = âTeamâ;
static const String sponsor_text = âSponsorsâ;
static const String faq_text = âFAQâ;
static const String map_text = âLocate Usâ;
```1. Open [GDG-DevFest-App-master\lib\home\session.dart](https://github.com/iampawan/GDG-DevFest-App/blob/master/lib/home/session.dart) file and customise the sessions according to your needs. Eg-
```
List sessions = [
Session(
sessionId: â1â,
sessionStartTime: â9:00 AMâ,
sessionTotalTime: â30 Minsâ,
sessionTitle: âDevByte: From Zero to ML on Google Cloud Platformâ,
speakerImage:
âhttps://avatars1.githubusercontent.com/u/12619420?s=400&u=eac38b075e4e4463edfb0f0a8972825cf7803d4c&v=4â,
speakerName: âMax Saltonstallâ,
speakerDesc: âCloud Developer Advocate, Google DevByte speakerâ,
track: "cloud"
),
]
```1. Open [GDG-DevFest-App-master\lib\home\speaker.dart](https://github.com/iampawan/GDG-DevFest-App/blob/master/lib/home/speaker.dart) file and customise the speakers according to your needs. Eg-
```
List speakers = [
Speaker(
speakerImage:
âhttps://avatars1.githubusercontent.com/u/12619420?s=400&u=eac38b075e4e4463edfb0f0a8972825cf7803d4c&v=4â,
speakerName: âPawan Kumarâ,
speakerDesc: âGoogle Developer Expert, Flutterâ,
speakerSession: âTalk: Getting Started With Flutter For Webâ,
fbUrl: âhttps://facebook.com/imthepkâ,
githubUrl: âhttps://github.com/iampawanâ,
linkedinUrl: âhttps://linkedin.com/in/imthepkâ,
twitterUrl: âhttps://twitter.com/imthepkâ,
),
]
```1. Open [GDG-DevFest-App-master\lib\home\team.dart](https://github.com/iampawan/GDG-DevFest-App/blob/master/lib/home/team.dart) file and customise the teams according to your needs. Eg-
```
List teams = [
Team(
name: âSundar Pichaiâ,
desc: âOrganizerâ,
contribution: âGoogle CEOâ,
image:
âhttps://pbs.twimg.com/profile_images/864282616597405701/M-FEJMZ0_400x400.jpgâ,
),
]
```1. Open [GDG-DevFest-App-master\lib\map\map_page.dart](https://github.com/iampawan/GDG-DevFest-App/blob/master/lib/map/map_page.dart) file and customise the lat long according to your needs. Eg-
```
static final LatLng myLocation = LatLng(37.42796133580664, -122.085749655962);
```1. Open [GDG-DevFest-App-master\lib\sponsors\sponsor_page.dart](https://github.com/iampawan/GDG-DevFest-App/blob/master/lib/sponsors/sponsor_page.dart) file and customise the sponsors data according to your needs. Eg-
```
SponsorImage(
imgUrl: âhttps://devfest.gdgkolkata.org/assets/img/logos/gd.pngâ,
)
```## Contributing
Awesome! Contributions of all kinds are greatly appreciated. To help smoothen the process we have a few non-exhaustive guidelines to follow which should get you going in no time.
### Using GitHub Issues
- Feel free to use GitHub issues for questions, bug reports, and feature requests
- Use the search feature to check for an existing issue
- Include as much information as possible and provide any relevant resources (Eg. screenshots)
- For bug reports ensure you have a reproducible test case
- A pull request with a breaking test would be super preferable here but isn't required### Submitting a Pull Request
- Squash commits
- Lint your code with eslint (config provided)
- Include relevant test updates/additions## Contributors
**Maintainer:** [Pawan Kumar](https://github.com/iampawan)
## License
Project is published under the [MIT license](/LICENSE.md).
Feel free to clone and modify repo as you want, but don't forget to add reference to authors :)_GDG DevFest App is not endorsed and/or supported by Google, the corporation._