├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── build.md │ ├── chore.md │ ├── ci.md │ ├── config.yml │ ├── documentation.md │ ├── feature_request.md │ ├── performance.md │ ├── refactor.md │ ├── revert.md │ ├── style.md │ └── test.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── patch.yaml │ └── release.yaml ├── .gitignore ├── .metadata ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle.kts │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-playstore.png │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── felangel │ │ │ │ └── flutter_and_friends │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ ├── ic_launcher_background.xml │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle.kts ├── art ├── appstore_badge.png ├── google_play_badge.png └── hero.png ├── assets ├── activities │ ├── arcade.jpg │ ├── bike_tour.jpg │ ├── bouldering.jpg │ ├── disc_golf.jpg │ ├── escape_room.jpg │ ├── kayak_tour.jpg │ ├── pentathlon.jpg │ └── zoo.jpg ├── logo.png ├── organizers │ ├── alek.png │ ├── daria.jpeg │ ├── elias.jpeg │ ├── johannes.jpeg │ └── lukas.jpg ├── speakers │ ├── albert_wolszon.jpeg │ ├── alexander_thiele.jpeg │ ├── anna_leushchenko.png │ ├── elias_elfarri.jpeg │ ├── enzo_conty.jpeg │ ├── esra_kadah.jpeg │ ├── filip_hracek.jpeg │ ├── ingvild_sandstad.jpeg │ ├── ivanna_kacevica.png │ ├── jamie_kerber.jpeg │ ├── jochum_van_der_ploeg.jpeg │ ├── luan_nico.jpg │ ├── lucas_josefiak.jpeg │ ├── mangirdas_kazlauskas.jpeg │ ├── martin_olsson.jpeg │ ├── mateusz_wojtczak.jpg │ ├── morgan_hunt.jpeg │ ├── moritz_theis.jpeg │ ├── pooja_bhaumik.png │ ├── remi_rousselet.jpeg │ ├── renan_araujo.jpg │ ├── roaa_khaddam.jpeg │ ├── rudolfs_stilve.jpeg │ ├── sandra_lundh.jpeg │ ├── sasha_denisov.jpeg │ └── slava_egorov.jpeg └── sponsors │ ├── appshack.png │ ├── bluefire.png │ ├── done.png │ ├── faire.png │ ├── firebase.png │ ├── flutter.png │ ├── invertase.png │ ├── leancode.png │ ├── posthog.png │ ├── rebelappstudio.png │ ├── serverpod.png │ ├── skandia.png │ └── widgetbook.png ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── GHAExportOptions.plist ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── 100.png │ │ │ ├── 1024.png │ │ │ ├── 114.png │ │ │ ├── 120.png │ │ │ ├── 128.png │ │ │ ├── 144.png │ │ │ ├── 152.png │ │ │ ├── 16.png │ │ │ ├── 167.png │ │ │ ├── 180.png │ │ │ ├── 20.png │ │ │ ├── 256.png │ │ │ ├── 29.png │ │ │ ├── 32.png │ │ │ ├── 40.png │ │ │ ├── 50.png │ │ │ ├── 512.png │ │ │ ├── 57.png │ │ │ ├── 58.png │ │ │ ├── 60.png │ │ │ ├── 64.png │ │ │ ├── 72.png │ │ │ ├── 76.png │ │ │ ├── 80.png │ │ │ ├── 87.png │ │ │ └── Contents.json │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── Runner-Bridging-Header.h │ └── Runner.entitlements └── RunnerTests │ └── RunnerTests.swift ├── lib ├── config │ ├── config.dart │ └── version.dart ├── extensions │ ├── date_time_extensions.dart │ └── extensions.dart ├── favorites │ ├── cubit │ │ ├── favorites_cubit.dart │ │ └── favorites_state.dart │ ├── favorites.dart │ ├── views │ │ ├── favorites_page.dart │ │ └── view.dart │ └── widgets │ │ ├── favorite_button.dart │ │ └── widgets.dart ├── friends_badge │ ├── cubit │ │ ├── friends_badge_cubit.dart │ │ └── friends_badge_state.dart │ ├── friends_badge.dart │ ├── views │ │ ├── friends_badge_page.dart │ │ └── view.dart │ └── widgets │ │ ├── pick_image_button.dart │ │ ├── widgets.dart │ │ └── write_to_badge_button.dart ├── launchpad │ ├── cubit │ │ ├── launchpad_cubit.dart │ │ └── launchpad_state.dart │ ├── launchpad.dart │ └── view │ │ ├── launchpad_page.dart │ │ └── view.dart ├── location │ ├── location.dart │ └── widgets │ │ ├── location_details.dart │ │ └── widgets.dart ├── main.dart ├── organizers │ ├── data │ │ ├── data.dart │ │ └── organizers.dart │ ├── models │ │ ├── models.dart │ │ ├── organizer.dart │ │ └── organizer.g.dart │ ├── organizers.dart │ ├── view │ │ ├── organizers_page.dart │ │ └── view.dart │ └── widgets │ │ ├── organizer_avatar.dart │ │ └── widgets.dart ├── schedule │ ├── cubit │ │ ├── schedule_cubit.dart │ │ └── schedule_state.dart │ ├── data │ │ ├── data.dart │ │ ├── events.dart │ │ ├── talks.dart │ │ └── workshops.dart │ ├── models │ │ ├── activity.dart │ │ ├── activity.g.dart │ │ ├── event.dart │ │ ├── location.dart │ │ ├── location.g.dart │ │ ├── models.dart │ │ ├── schedule.dart │ │ ├── talk.dart │ │ ├── talk.g.dart │ │ ├── workshop.dart │ │ └── workshop.g.dart │ ├── schedule.dart │ ├── view │ │ ├── schedule_page.dart │ │ └── view.dart │ └── widgets │ │ ├── activity_card.dart │ │ ├── event_card.dart │ │ ├── talk_card.dart │ │ ├── widgets.dart │ │ └── workshop_card.dart ├── settings │ ├── cubit │ │ ├── settings_cubit.dart │ │ └── settings_state.dart │ ├── settings.dart │ └── views │ │ ├── settings_page.dart │ │ └── views.dart ├── speaker_details │ ├── speaker_details.dart │ └── view │ │ ├── speaker_details_page.dart │ │ └── view.dart ├── speakers │ ├── data │ │ ├── data.dart │ │ └── speakers.dart │ ├── models │ │ ├── models.dart │ │ ├── speaker.dart │ │ └── speaker.g.dart │ ├── speakers.dart │ ├── view │ │ ├── speakers_page.dart │ │ └── view.dart │ └── widgets │ │ ├── speaker_avatar.dart │ │ └── widgets.dart ├── sponsors │ ├── data │ │ ├── data.dart │ │ └── sponsors.dart │ ├── models │ │ ├── models.dart │ │ └── sponsors.dart │ ├── sponsors.dart │ └── views │ │ ├── sponsors_page.dart │ │ └── view.dart ├── talk_details │ ├── talk_details.dart │ └── view │ │ ├── talk_details_page.dart │ │ └── view.dart ├── theme │ ├── cubit │ │ ├── theme_cubit.dart │ │ └── theme_state.dart │ ├── theme.dart │ └── widgets │ │ ├── ff_app_bar.dart │ │ ├── theme_toggle.dart │ │ └── widgets.dart ├── twitter │ ├── twitter.dart │ └── widgets │ │ ├── twitter_icon_button.dart │ │ └── widgets.dart ├── updater │ ├── cubit │ │ ├── updater_cubit.dart │ │ └── updater_state.dart │ ├── updater.dart │ └── widgets │ │ ├── update_listener.dart │ │ └── widgets.dart └── workshop_details │ ├── view │ ├── view.dart │ └── workshop_details_page.dart │ └── workshop_details.dart ├── privacy.md ├── pubspec.lock ├── pubspec.yaml └── shorebird.yaml /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/.github/ISSUE_TEMPLATE/build.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/chore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/.github/ISSUE_TEMPLATE/chore.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/.github/ISSUE_TEMPLATE/ci.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/.github/ISSUE_TEMPLATE/documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/.github/ISSUE_TEMPLATE/performance.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/refactor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/.github/ISSUE_TEMPLATE/refactor.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/revert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/.github/ISSUE_TEMPLATE/revert.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/.github/ISSUE_TEMPLATE/style.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/.github/ISSUE_TEMPLATE/test.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/.github/workflows/patch.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/.metadata -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/android/app/build.gradle.kts -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/android/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/felangel/flutter_and_friends/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/android/app/src/main/kotlin/com/felangel/flutter_and_friends/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/android/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/android/build.gradle.kts -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/android/settings.gradle.kts -------------------------------------------------------------------------------- /art/appstore_badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/art/appstore_badge.png -------------------------------------------------------------------------------- /art/google_play_badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/art/google_play_badge.png -------------------------------------------------------------------------------- /art/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/art/hero.png -------------------------------------------------------------------------------- /assets/activities/arcade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/activities/arcade.jpg -------------------------------------------------------------------------------- /assets/activities/bike_tour.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/activities/bike_tour.jpg -------------------------------------------------------------------------------- /assets/activities/bouldering.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/activities/bouldering.jpg -------------------------------------------------------------------------------- /assets/activities/disc_golf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/activities/disc_golf.jpg -------------------------------------------------------------------------------- /assets/activities/escape_room.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/activities/escape_room.jpg -------------------------------------------------------------------------------- /assets/activities/kayak_tour.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/activities/kayak_tour.jpg -------------------------------------------------------------------------------- /assets/activities/pentathlon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/activities/pentathlon.jpg -------------------------------------------------------------------------------- /assets/activities/zoo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/activities/zoo.jpg -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/organizers/alek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/organizers/alek.png -------------------------------------------------------------------------------- /assets/organizers/daria.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/organizers/daria.jpeg -------------------------------------------------------------------------------- /assets/organizers/elias.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/organizers/elias.jpeg -------------------------------------------------------------------------------- /assets/organizers/johannes.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/organizers/johannes.jpeg -------------------------------------------------------------------------------- /assets/organizers/lukas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/organizers/lukas.jpg -------------------------------------------------------------------------------- /assets/speakers/albert_wolszon.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/speakers/albert_wolszon.jpeg -------------------------------------------------------------------------------- /assets/speakers/alexander_thiele.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/speakers/alexander_thiele.jpeg -------------------------------------------------------------------------------- /assets/speakers/anna_leushchenko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/speakers/anna_leushchenko.png -------------------------------------------------------------------------------- /assets/speakers/elias_elfarri.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/speakers/elias_elfarri.jpeg -------------------------------------------------------------------------------- /assets/speakers/enzo_conty.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/speakers/enzo_conty.jpeg -------------------------------------------------------------------------------- /assets/speakers/esra_kadah.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/speakers/esra_kadah.jpeg -------------------------------------------------------------------------------- /assets/speakers/filip_hracek.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/speakers/filip_hracek.jpeg -------------------------------------------------------------------------------- /assets/speakers/ingvild_sandstad.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/speakers/ingvild_sandstad.jpeg -------------------------------------------------------------------------------- /assets/speakers/ivanna_kacevica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/speakers/ivanna_kacevica.png -------------------------------------------------------------------------------- /assets/speakers/jamie_kerber.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/speakers/jamie_kerber.jpeg -------------------------------------------------------------------------------- /assets/speakers/jochum_van_der_ploeg.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/speakers/jochum_van_der_ploeg.jpeg -------------------------------------------------------------------------------- /assets/speakers/luan_nico.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/speakers/luan_nico.jpg -------------------------------------------------------------------------------- /assets/speakers/lucas_josefiak.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/speakers/lucas_josefiak.jpeg -------------------------------------------------------------------------------- /assets/speakers/mangirdas_kazlauskas.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/speakers/mangirdas_kazlauskas.jpeg -------------------------------------------------------------------------------- /assets/speakers/martin_olsson.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/speakers/martin_olsson.jpeg -------------------------------------------------------------------------------- /assets/speakers/mateusz_wojtczak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/speakers/mateusz_wojtczak.jpg -------------------------------------------------------------------------------- /assets/speakers/morgan_hunt.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/speakers/morgan_hunt.jpeg -------------------------------------------------------------------------------- /assets/speakers/moritz_theis.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/speakers/moritz_theis.jpeg -------------------------------------------------------------------------------- /assets/speakers/pooja_bhaumik.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/speakers/pooja_bhaumik.png -------------------------------------------------------------------------------- /assets/speakers/remi_rousselet.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/speakers/remi_rousselet.jpeg -------------------------------------------------------------------------------- /assets/speakers/renan_araujo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/speakers/renan_araujo.jpg -------------------------------------------------------------------------------- /assets/speakers/roaa_khaddam.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/speakers/roaa_khaddam.jpeg -------------------------------------------------------------------------------- /assets/speakers/rudolfs_stilve.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/speakers/rudolfs_stilve.jpeg -------------------------------------------------------------------------------- /assets/speakers/sandra_lundh.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/speakers/sandra_lundh.jpeg -------------------------------------------------------------------------------- /assets/speakers/sasha_denisov.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/speakers/sasha_denisov.jpeg -------------------------------------------------------------------------------- /assets/speakers/slava_egorov.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/speakers/slava_egorov.jpeg -------------------------------------------------------------------------------- /assets/sponsors/appshack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/sponsors/appshack.png -------------------------------------------------------------------------------- /assets/sponsors/bluefire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/sponsors/bluefire.png -------------------------------------------------------------------------------- /assets/sponsors/done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/sponsors/done.png -------------------------------------------------------------------------------- /assets/sponsors/faire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/sponsors/faire.png -------------------------------------------------------------------------------- /assets/sponsors/firebase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/sponsors/firebase.png -------------------------------------------------------------------------------- /assets/sponsors/flutter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/sponsors/flutter.png -------------------------------------------------------------------------------- /assets/sponsors/invertase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/sponsors/invertase.png -------------------------------------------------------------------------------- /assets/sponsors/leancode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/sponsors/leancode.png -------------------------------------------------------------------------------- /assets/sponsors/posthog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/sponsors/posthog.png -------------------------------------------------------------------------------- /assets/sponsors/rebelappstudio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/sponsors/rebelappstudio.png -------------------------------------------------------------------------------- /assets/sponsors/serverpod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/sponsors/serverpod.png -------------------------------------------------------------------------------- /assets/sponsors/skandia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/sponsors/skandia.png -------------------------------------------------------------------------------- /assets/sponsors/widgetbook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/assets/sponsors/widgetbook.png -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/GHAExportOptions.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/GHAExportOptions.plist -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/100.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/114.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/128.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/144.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/16.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/20.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/256.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/32.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/50.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/512.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/57.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/64.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/72.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /ios/Runner/Runner.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/Runner/Runner.entitlements -------------------------------------------------------------------------------- /ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /lib/config/config.dart: -------------------------------------------------------------------------------- 1 | export 'version.dart'; 2 | -------------------------------------------------------------------------------- /lib/config/version.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/config/version.dart -------------------------------------------------------------------------------- /lib/extensions/date_time_extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/extensions/date_time_extensions.dart -------------------------------------------------------------------------------- /lib/extensions/extensions.dart: -------------------------------------------------------------------------------- 1 | export 'date_time_extensions.dart'; 2 | -------------------------------------------------------------------------------- /lib/favorites/cubit/favorites_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/favorites/cubit/favorites_cubit.dart -------------------------------------------------------------------------------- /lib/favorites/cubit/favorites_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/favorites/cubit/favorites_state.dart -------------------------------------------------------------------------------- /lib/favorites/favorites.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/favorites/favorites.dart -------------------------------------------------------------------------------- /lib/favorites/views/favorites_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/favorites/views/favorites_page.dart -------------------------------------------------------------------------------- /lib/favorites/views/view.dart: -------------------------------------------------------------------------------- 1 | export 'favorites_page.dart'; 2 | -------------------------------------------------------------------------------- /lib/favorites/widgets/favorite_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/favorites/widgets/favorite_button.dart -------------------------------------------------------------------------------- /lib/favorites/widgets/widgets.dart: -------------------------------------------------------------------------------- 1 | export 'favorite_button.dart'; 2 | -------------------------------------------------------------------------------- /lib/friends_badge/cubit/friends_badge_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/friends_badge/cubit/friends_badge_cubit.dart -------------------------------------------------------------------------------- /lib/friends_badge/cubit/friends_badge_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/friends_badge/cubit/friends_badge_state.dart -------------------------------------------------------------------------------- /lib/friends_badge/friends_badge.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/friends_badge/friends_badge.dart -------------------------------------------------------------------------------- /lib/friends_badge/views/friends_badge_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/friends_badge/views/friends_badge_page.dart -------------------------------------------------------------------------------- /lib/friends_badge/views/view.dart: -------------------------------------------------------------------------------- 1 | export 'friends_badge_page.dart'; 2 | -------------------------------------------------------------------------------- /lib/friends_badge/widgets/pick_image_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/friends_badge/widgets/pick_image_button.dart -------------------------------------------------------------------------------- /lib/friends_badge/widgets/widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/friends_badge/widgets/widgets.dart -------------------------------------------------------------------------------- /lib/friends_badge/widgets/write_to_badge_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/friends_badge/widgets/write_to_badge_button.dart -------------------------------------------------------------------------------- /lib/launchpad/cubit/launchpad_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/launchpad/cubit/launchpad_cubit.dart -------------------------------------------------------------------------------- /lib/launchpad/cubit/launchpad_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/launchpad/cubit/launchpad_state.dart -------------------------------------------------------------------------------- /lib/launchpad/launchpad.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/launchpad/launchpad.dart -------------------------------------------------------------------------------- /lib/launchpad/view/launchpad_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/launchpad/view/launchpad_page.dart -------------------------------------------------------------------------------- /lib/launchpad/view/view.dart: -------------------------------------------------------------------------------- 1 | export './launchpad_page.dart'; 2 | -------------------------------------------------------------------------------- /lib/location/location.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/location/location.dart -------------------------------------------------------------------------------- /lib/location/widgets/location_details.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/location/widgets/location_details.dart -------------------------------------------------------------------------------- /lib/location/widgets/widgets.dart: -------------------------------------------------------------------------------- 1 | export 'location_details.dart'; 2 | -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/organizers/data/data.dart: -------------------------------------------------------------------------------- 1 | export 'organizers.dart'; 2 | -------------------------------------------------------------------------------- /lib/organizers/data/organizers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/organizers/data/organizers.dart -------------------------------------------------------------------------------- /lib/organizers/models/models.dart: -------------------------------------------------------------------------------- 1 | export 'organizer.dart'; 2 | -------------------------------------------------------------------------------- /lib/organizers/models/organizer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/organizers/models/organizer.dart -------------------------------------------------------------------------------- /lib/organizers/models/organizer.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/organizers/models/organizer.g.dart -------------------------------------------------------------------------------- /lib/organizers/organizers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/organizers/organizers.dart -------------------------------------------------------------------------------- /lib/organizers/view/organizers_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/organizers/view/organizers_page.dart -------------------------------------------------------------------------------- /lib/organizers/view/view.dart: -------------------------------------------------------------------------------- 1 | export 'organizers_page.dart'; 2 | -------------------------------------------------------------------------------- /lib/organizers/widgets/organizer_avatar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/organizers/widgets/organizer_avatar.dart -------------------------------------------------------------------------------- /lib/organizers/widgets/widgets.dart: -------------------------------------------------------------------------------- 1 | export 'organizer_avatar.dart'; 2 | -------------------------------------------------------------------------------- /lib/schedule/cubit/schedule_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/schedule/cubit/schedule_cubit.dart -------------------------------------------------------------------------------- /lib/schedule/cubit/schedule_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/schedule/cubit/schedule_state.dart -------------------------------------------------------------------------------- /lib/schedule/data/data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/schedule/data/data.dart -------------------------------------------------------------------------------- /lib/schedule/data/events.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/schedule/data/events.dart -------------------------------------------------------------------------------- /lib/schedule/data/talks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/schedule/data/talks.dart -------------------------------------------------------------------------------- /lib/schedule/data/workshops.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/schedule/data/workshops.dart -------------------------------------------------------------------------------- /lib/schedule/models/activity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/schedule/models/activity.dart -------------------------------------------------------------------------------- /lib/schedule/models/activity.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/schedule/models/activity.g.dart -------------------------------------------------------------------------------- /lib/schedule/models/event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/schedule/models/event.dart -------------------------------------------------------------------------------- /lib/schedule/models/location.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/schedule/models/location.dart -------------------------------------------------------------------------------- /lib/schedule/models/location.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/schedule/models/location.g.dart -------------------------------------------------------------------------------- /lib/schedule/models/models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/schedule/models/models.dart -------------------------------------------------------------------------------- /lib/schedule/models/schedule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/schedule/models/schedule.dart -------------------------------------------------------------------------------- /lib/schedule/models/talk.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/schedule/models/talk.dart -------------------------------------------------------------------------------- /lib/schedule/models/talk.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/schedule/models/talk.g.dart -------------------------------------------------------------------------------- /lib/schedule/models/workshop.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/schedule/models/workshop.dart -------------------------------------------------------------------------------- /lib/schedule/models/workshop.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/schedule/models/workshop.g.dart -------------------------------------------------------------------------------- /lib/schedule/schedule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/schedule/schedule.dart -------------------------------------------------------------------------------- /lib/schedule/view/schedule_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/schedule/view/schedule_page.dart -------------------------------------------------------------------------------- /lib/schedule/view/view.dart: -------------------------------------------------------------------------------- 1 | export 'schedule_page.dart'; 2 | -------------------------------------------------------------------------------- /lib/schedule/widgets/activity_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/schedule/widgets/activity_card.dart -------------------------------------------------------------------------------- /lib/schedule/widgets/event_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/schedule/widgets/event_card.dart -------------------------------------------------------------------------------- /lib/schedule/widgets/talk_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/schedule/widgets/talk_card.dart -------------------------------------------------------------------------------- /lib/schedule/widgets/widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/schedule/widgets/widgets.dart -------------------------------------------------------------------------------- /lib/schedule/widgets/workshop_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/schedule/widgets/workshop_card.dart -------------------------------------------------------------------------------- /lib/settings/cubit/settings_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/settings/cubit/settings_cubit.dart -------------------------------------------------------------------------------- /lib/settings/cubit/settings_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/settings/cubit/settings_state.dart -------------------------------------------------------------------------------- /lib/settings/settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/settings/settings.dart -------------------------------------------------------------------------------- /lib/settings/views/settings_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/settings/views/settings_page.dart -------------------------------------------------------------------------------- /lib/settings/views/views.dart: -------------------------------------------------------------------------------- 1 | export 'settings_page.dart'; 2 | -------------------------------------------------------------------------------- /lib/speaker_details/speaker_details.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/speaker_details/speaker_details.dart -------------------------------------------------------------------------------- /lib/speaker_details/view/speaker_details_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/speaker_details/view/speaker_details_page.dart -------------------------------------------------------------------------------- /lib/speaker_details/view/view.dart: -------------------------------------------------------------------------------- 1 | export 'speaker_details_page.dart'; 2 | -------------------------------------------------------------------------------- /lib/speakers/data/data.dart: -------------------------------------------------------------------------------- 1 | export 'speakers.dart'; 2 | -------------------------------------------------------------------------------- /lib/speakers/data/speakers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/speakers/data/speakers.dart -------------------------------------------------------------------------------- /lib/speakers/models/models.dart: -------------------------------------------------------------------------------- 1 | export 'speaker.dart'; 2 | -------------------------------------------------------------------------------- /lib/speakers/models/speaker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/speakers/models/speaker.dart -------------------------------------------------------------------------------- /lib/speakers/models/speaker.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/speakers/models/speaker.g.dart -------------------------------------------------------------------------------- /lib/speakers/speakers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/speakers/speakers.dart -------------------------------------------------------------------------------- /lib/speakers/view/speakers_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/speakers/view/speakers_page.dart -------------------------------------------------------------------------------- /lib/speakers/view/view.dart: -------------------------------------------------------------------------------- 1 | export 'speakers_page.dart'; 2 | -------------------------------------------------------------------------------- /lib/speakers/widgets/speaker_avatar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/speakers/widgets/speaker_avatar.dart -------------------------------------------------------------------------------- /lib/speakers/widgets/widgets.dart: -------------------------------------------------------------------------------- 1 | export 'speaker_avatar.dart'; 2 | -------------------------------------------------------------------------------- /lib/sponsors/data/data.dart: -------------------------------------------------------------------------------- 1 | export 'sponsors.dart'; 2 | -------------------------------------------------------------------------------- /lib/sponsors/data/sponsors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/sponsors/data/sponsors.dart -------------------------------------------------------------------------------- /lib/sponsors/models/models.dart: -------------------------------------------------------------------------------- 1 | export 'sponsors.dart'; 2 | -------------------------------------------------------------------------------- /lib/sponsors/models/sponsors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/sponsors/models/sponsors.dart -------------------------------------------------------------------------------- /lib/sponsors/sponsors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/sponsors/sponsors.dart -------------------------------------------------------------------------------- /lib/sponsors/views/sponsors_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/sponsors/views/sponsors_page.dart -------------------------------------------------------------------------------- /lib/sponsors/views/view.dart: -------------------------------------------------------------------------------- 1 | export './sponsors_page.dart'; 2 | -------------------------------------------------------------------------------- /lib/talk_details/talk_details.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/talk_details/talk_details.dart -------------------------------------------------------------------------------- /lib/talk_details/view/talk_details_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/talk_details/view/talk_details_page.dart -------------------------------------------------------------------------------- /lib/talk_details/view/view.dart: -------------------------------------------------------------------------------- 1 | export 'talk_details_page.dart'; 2 | -------------------------------------------------------------------------------- /lib/theme/cubit/theme_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/theme/cubit/theme_cubit.dart -------------------------------------------------------------------------------- /lib/theme/cubit/theme_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/theme/cubit/theme_state.dart -------------------------------------------------------------------------------- /lib/theme/theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/theme/theme.dart -------------------------------------------------------------------------------- /lib/theme/widgets/ff_app_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/theme/widgets/ff_app_bar.dart -------------------------------------------------------------------------------- /lib/theme/widgets/theme_toggle.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/theme/widgets/theme_toggle.dart -------------------------------------------------------------------------------- /lib/theme/widgets/widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/theme/widgets/widgets.dart -------------------------------------------------------------------------------- /lib/twitter/twitter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/twitter/twitter.dart -------------------------------------------------------------------------------- /lib/twitter/widgets/twitter_icon_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/twitter/widgets/twitter_icon_button.dart -------------------------------------------------------------------------------- /lib/twitter/widgets/widgets.dart: -------------------------------------------------------------------------------- 1 | export 'twitter_icon_button.dart'; 2 | -------------------------------------------------------------------------------- /lib/updater/cubit/updater_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/updater/cubit/updater_cubit.dart -------------------------------------------------------------------------------- /lib/updater/cubit/updater_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/updater/cubit/updater_state.dart -------------------------------------------------------------------------------- /lib/updater/updater.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/updater/updater.dart -------------------------------------------------------------------------------- /lib/updater/widgets/update_listener.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/updater/widgets/update_listener.dart -------------------------------------------------------------------------------- /lib/updater/widgets/widgets.dart: -------------------------------------------------------------------------------- 1 | export 'update_listener.dart'; 2 | -------------------------------------------------------------------------------- /lib/workshop_details/view/view.dart: -------------------------------------------------------------------------------- 1 | export 'workshop_details_page.dart'; 2 | -------------------------------------------------------------------------------- /lib/workshop_details/view/workshop_details_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/workshop_details/view/workshop_details_page.dart -------------------------------------------------------------------------------- /lib/workshop_details/workshop_details.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/lib/workshop_details/workshop_details.dart -------------------------------------------------------------------------------- /privacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/privacy.md -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /shorebird.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-and-friends/flutter_and_friends/HEAD/shorebird.yaml --------------------------------------------------------------------------------