Download this source code for
5 USD


Download this source code for
5 USD


Download this source code for
5 USD


Download this source code for
5 USD

gdg devfest app

this application is for people who want to attend different de vfests and tech events across the world. this app contains pieces of information about tech events.

techmeet-devfest-appb

get it on google play
get it on the app store

�� screenshots

light theme dark theme
An App Template For GDG DevFest with flutter An App Template For GDG DevFest with flutter
An App Template For GDG DevFest with flutter An App Template For GDG DevFest with flutter
An App Template For GDG DevFest with flutter An App Template For GDG DevFest with flutter

show some :heart: and star the repo to support the project

overview

devfest mobile application is for all the gdg devfe sts around the world. you can see the agenda in the app as well as the speakers and other updates regarding the devfes t.

technology stack

  • flutter
  • flutter bloc
  • firebase (upcoming)

getting started

  1. download repository and download your download locally
  2. install flutter 1.7.8
  3. install android studio / intellij / vscode
  4. preparing release for android
  5. preparing release for 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-devfe st-app-master/android/gradlew app:properties:. to resolve that,

  1. open gdg-devfest-app-masterandroidappbuild.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
    // }
    }
    
  2. open gdg-devfest-app-masterlibutilsdevfest.dart file and customise the texts according to your needs. eg-
        static const string app_name = “dev fest”;
        static const string app_version = “version 1.0.4”;
        static const int app_version_code = 1;
    
        //*  texts
        static const string welcometext = “welcome to gdg devf est”;
        static const string desctext =
            ‘’’de vfests are community-led, developer events hosted by gdg chapters around the globe focused on community building & learning about google’s technologies. each devf est 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”;
    
  3. open gdg-devfest-app-masterlibhomesession.dart file and customise the sessions according to your needs. eg-
        list<session> 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"
            ),
        ]
    
  4. open gdg-devfest-app-masterlibhomespeaker.dart file and customise the speakers according to your needs. eg-
        list<speaker> 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”,
            ),
        ]
    
  5. open gdg-devfest-app-masterlibhometeam.dart file and customise the teams according to your needs. eg-
        list<team> teams = [
            team(
                name: “sundar pichai”,
                desc: “organizer”,
                contribution: “google ceo”,
                image:
                    “https://pbs.twimg.com/profile_images/864282616597405701/m-fejmz0_400x400.jpg”,
            ),
        ]
    
  6. open gdg-devfest-app-masterlibmapmap_page.dart file and customise the lat long according to your needs. eg-
       static final latlng mylocation = latlng(37.42796133580664,       -122.085749655962);
    
  7. open gdg-devfest-app-masterlibsponsorssponsor_page.dart file and customise the sponsors data according to your needs. eg-
       sponsorimage(
            imgurl: “https://devfe st.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

Download this source code for
5 USD


Download this source code for
5 USD


Download this source code for
5 USD


Download this source code for
5 USD

Top