├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── android ├── .gitignore ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── voxxeddays │ │ │ └── voxxedapp │ │ │ └── MainActivity.java │ │ └── res │ │ ├── drawable-hdpi │ │ └── ic_session_start.png │ │ ├── drawable-mdpi │ │ └── ic_session_start.png │ │ ├── drawable-xhdpi │ │ └── ic_session_start.png │ │ ├── drawable-xxhdpi │ │ └── ic_session_start.png │ │ ├── drawable │ │ └── launch_background.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── assets ├── font │ ├── Lato-Bold.ttf │ ├── Lato-BoldItalic.ttf │ ├── Lato-Italic.ttf │ └── Lato-Regular.ttf ├── icon │ └── launcher_icon.jpg └── json │ └── cold_boot.json ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── Runner │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-1024x1024@1x.png │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ └── Icon-App-83.5x83.5@2x.png │ └── LaunchImage.imageset │ │ ├── Contents.json │ │ ├── LaunchImage.png │ │ ├── LaunchImage@2x.png │ │ ├── LaunchImage@3x.png │ │ └── README.md │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── main.m ├── lib ├── TODO.txt ├── analysis_options.yaml ├── blocs │ ├── app_state_bloc.dart │ ├── conference_bloc.dart │ ├── favorites_bloc.dart │ ├── logger_bloc.dart │ ├── navigation_bloc.dart │ ├── schedule_bloc.dart │ └── speaker_bloc.dart ├── data │ ├── app_state_local_storage.dart │ └── web_client.dart ├── main.dart ├── models │ ├── app_state.dart │ ├── app_state.g.dart │ ├── conference.dart │ ├── conference.g.dart │ ├── enums.dart │ ├── enums.g.dart │ ├── language.dart │ ├── language.g.dart │ ├── schedule.dart │ ├── schedule.g.dart │ ├── schedule_break.dart │ ├── schedule_break.g.dart │ ├── schedule_slot.dart │ ├── schedule_slot.g.dart │ ├── serializers.dart │ ├── serializers.g.dart │ ├── session_type.dart │ ├── session_type.g.dart │ ├── speaker.dart │ ├── speaker.g.dart │ ├── talk.dart │ ├── talk.g.dart │ ├── track.dart │ └── track.g.dart ├── screens │ ├── about_screen.dart │ ├── conference_detail.dart │ ├── conference_list.dart │ ├── speaker_detail.dart │ ├── splash_screen.dart │ ├── talk_detail.dart │ └── track_detail.dart ├── util │ ├── logger.dart │ └── string_utils.dart └── widgets │ ├── avatar.dart │ ├── invalid_navigation_notice.dart │ ├── main_drawer.dart │ ├── schedule_slot_item.dart │ ├── speaker_item.dart │ └── track_item.dart ├── pubspec.lock ├── pubspec.yaml ├── test └── model_test.dart └── travis_script.sh /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/README.md -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/voxxeddays/voxxedapp/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/android/app/src/main/java/com/voxxeddays/voxxedapp/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/ic_session_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/android/app/src/main/res/drawable-hdpi/ic_session_start.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/ic_session_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/android/app/src/main/res/drawable-mdpi/ic_session_start.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/ic_session_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/android/app/src/main/res/drawable-xhdpi/ic_session_start.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/ic_session_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/android/app/src/main/res/drawable-xxhdpi/ic_session_start.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/font/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/assets/font/Lato-Bold.ttf -------------------------------------------------------------------------------- /assets/font/Lato-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/assets/font/Lato-BoldItalic.ttf -------------------------------------------------------------------------------- /assets/font/Lato-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/assets/font/Lato-Italic.ttf -------------------------------------------------------------------------------- /assets/font/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/assets/font/Lato-Regular.ttf -------------------------------------------------------------------------------- /assets/icon/launcher_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/assets/icon/launcher_icon.jpg -------------------------------------------------------------------------------- /assets/json/cold_boot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/assets/json/cold_boot.json -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/ios/Runner/AppDelegate.h -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/ios/Runner/AppDelegate.m -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/ios/Runner/main.m -------------------------------------------------------------------------------- /lib/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/TODO.txt -------------------------------------------------------------------------------- /lib/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/analysis_options.yaml -------------------------------------------------------------------------------- /lib/blocs/app_state_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/blocs/app_state_bloc.dart -------------------------------------------------------------------------------- /lib/blocs/conference_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/blocs/conference_bloc.dart -------------------------------------------------------------------------------- /lib/blocs/favorites_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/blocs/favorites_bloc.dart -------------------------------------------------------------------------------- /lib/blocs/logger_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/blocs/logger_bloc.dart -------------------------------------------------------------------------------- /lib/blocs/navigation_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/blocs/navigation_bloc.dart -------------------------------------------------------------------------------- /lib/blocs/schedule_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/blocs/schedule_bloc.dart -------------------------------------------------------------------------------- /lib/blocs/speaker_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/blocs/speaker_bloc.dart -------------------------------------------------------------------------------- /lib/data/app_state_local_storage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/data/app_state_local_storage.dart -------------------------------------------------------------------------------- /lib/data/web_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/data/web_client.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/models/app_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/models/app_state.dart -------------------------------------------------------------------------------- /lib/models/app_state.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/models/app_state.g.dart -------------------------------------------------------------------------------- /lib/models/conference.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/models/conference.dart -------------------------------------------------------------------------------- /lib/models/conference.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/models/conference.g.dart -------------------------------------------------------------------------------- /lib/models/enums.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/models/enums.dart -------------------------------------------------------------------------------- /lib/models/enums.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/models/enums.g.dart -------------------------------------------------------------------------------- /lib/models/language.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/models/language.dart -------------------------------------------------------------------------------- /lib/models/language.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/models/language.g.dart -------------------------------------------------------------------------------- /lib/models/schedule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/models/schedule.dart -------------------------------------------------------------------------------- /lib/models/schedule.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/models/schedule.g.dart -------------------------------------------------------------------------------- /lib/models/schedule_break.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/models/schedule_break.dart -------------------------------------------------------------------------------- /lib/models/schedule_break.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/models/schedule_break.g.dart -------------------------------------------------------------------------------- /lib/models/schedule_slot.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/models/schedule_slot.dart -------------------------------------------------------------------------------- /lib/models/schedule_slot.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/models/schedule_slot.g.dart -------------------------------------------------------------------------------- /lib/models/serializers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/models/serializers.dart -------------------------------------------------------------------------------- /lib/models/serializers.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/models/serializers.g.dart -------------------------------------------------------------------------------- /lib/models/session_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/models/session_type.dart -------------------------------------------------------------------------------- /lib/models/session_type.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/models/session_type.g.dart -------------------------------------------------------------------------------- /lib/models/speaker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/models/speaker.dart -------------------------------------------------------------------------------- /lib/models/speaker.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/models/speaker.g.dart -------------------------------------------------------------------------------- /lib/models/talk.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/models/talk.dart -------------------------------------------------------------------------------- /lib/models/talk.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/models/talk.g.dart -------------------------------------------------------------------------------- /lib/models/track.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/models/track.dart -------------------------------------------------------------------------------- /lib/models/track.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/models/track.g.dart -------------------------------------------------------------------------------- /lib/screens/about_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/screens/about_screen.dart -------------------------------------------------------------------------------- /lib/screens/conference_detail.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/screens/conference_detail.dart -------------------------------------------------------------------------------- /lib/screens/conference_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/screens/conference_list.dart -------------------------------------------------------------------------------- /lib/screens/speaker_detail.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/screens/speaker_detail.dart -------------------------------------------------------------------------------- /lib/screens/splash_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/screens/splash_screen.dart -------------------------------------------------------------------------------- /lib/screens/talk_detail.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/screens/talk_detail.dart -------------------------------------------------------------------------------- /lib/screens/track_detail.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/screens/track_detail.dart -------------------------------------------------------------------------------- /lib/util/logger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/util/logger.dart -------------------------------------------------------------------------------- /lib/util/string_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/util/string_utils.dart -------------------------------------------------------------------------------- /lib/widgets/avatar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/widgets/avatar.dart -------------------------------------------------------------------------------- /lib/widgets/invalid_navigation_notice.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/widgets/invalid_navigation_notice.dart -------------------------------------------------------------------------------- /lib/widgets/main_drawer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/widgets/main_drawer.dart -------------------------------------------------------------------------------- /lib/widgets/schedule_slot_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/widgets/schedule_slot_item.dart -------------------------------------------------------------------------------- /lib/widgets/speaker_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/widgets/speaker_item.dart -------------------------------------------------------------------------------- /lib/widgets/track_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/lib/widgets/track_item.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/model_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/test/model_test.dart -------------------------------------------------------------------------------- /travis_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devoxx/voxxedapp/HEAD/travis_script.sh --------------------------------------------------------------------------------