├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── app ├── .gitignore ├── .metadata ├── Dockerfile ├── README.md ├── analysis_options.yaml ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── app │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v21 │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── launcher_icon.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── launcher_icon.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── launcher_icon.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── launcher_icon.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── launcher_icon.png │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── assets │ └── icon │ │ └── icon.png ├── fly.toml ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── 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 │ │ │ ├── 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-50x50@1x.png │ │ │ ├── Icon-App-50x50@2x.png │ │ │ ├── Icon-App-57x57@1x.png │ │ │ ├── Icon-App-57x57@2x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-72x72@1x.png │ │ │ ├── Icon-App-72x72@2x.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 │ │ └── Runner-Bridging-Header.h ├── lib │ └── main.dart ├── linux │ ├── .gitignore │ ├── CMakeLists.txt │ ├── flutter │ │ ├── CMakeLists.txt │ │ ├── generated_plugin_registrant.cc │ │ ├── generated_plugin_registrant.h │ │ └── generated_plugins.cmake │ ├── main.cc │ ├── my_application.cc │ └── my_application.h ├── macos │ ├── .gitignore │ ├── Flutter │ │ ├── Flutter-Debug.xcconfig │ │ ├── Flutter-Release.xcconfig │ │ └── GeneratedPluginRegistrant.swift │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── app_icon_1024.png │ │ │ ├── app_icon_128.png │ │ │ ├── app_icon_16.png │ │ │ ├── app_icon_256.png │ │ │ ├── app_icon_32.png │ │ │ ├── app_icon_512.png │ │ │ └── app_icon_64.png │ │ ├── Base.lproj │ │ └── MainMenu.xib │ │ ├── Configs │ │ ├── AppInfo.xcconfig │ │ ├── Debug.xcconfig │ │ ├── Release.xcconfig │ │ └── Warnings.xcconfig │ │ ├── DebugProfile.entitlements │ │ ├── Info.plist │ │ ├── MainFlutterWindow.swift │ │ └── Release.entitlements ├── pubspec.yaml ├── pwa.md ├── test │ └── widget_test.dart ├── web │ ├── favicon.png │ ├── icons │ │ ├── Icon-192.png │ │ ├── Icon-512.png │ │ ├── Icon-maskable-192.png │ │ └── Icon-maskable-512.png │ ├── index.html │ └── manifest.json └── windows │ ├── .gitignore │ ├── CMakeLists.txt │ ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake │ └── runner │ ├── CMakeLists.txt │ ├── Runner.rc │ ├── flutter_window.cpp │ ├── flutter_window.h │ ├── main.cpp │ ├── resource.h │ ├── resources │ └── app_icon.ico │ ├── runner.exe.manifest │ ├── utils.cpp │ ├── utils.h │ ├── win32_window.cpp │ └── win32_window.h └── backend ├── .dockerignore ├── .formatter.exs ├── .gitignore ├── Dockerfile ├── README.md ├── assets ├── css │ └── app.css ├── js │ ├── app.js │ └── user_socket.js └── tailwind.config.js ├── config ├── config.exs ├── dev.exs ├── prod.exs ├── runtime.exs └── test.exs ├── coveralls.json ├── fly.toml ├── lib ├── app.ex ├── app │ └── application.ex ├── app_web.ex └── app_web │ ├── channels │ ├── room_channel.ex │ └── user_socket.ex │ ├── controllers │ └── error_json.ex │ ├── endpoint.ex │ ├── presence.ex │ ├── router.ex │ └── telemetry.ex ├── mix.exs ├── mix.lock ├── priv └── static │ ├── favicon.ico │ └── robots.txt ├── rel └── overlays │ └── bin │ ├── server │ └── server.bat └── test ├── app_web ├── channels │ └── room_channel_test.exs └── controllers │ └── error_json_test.exs ├── support ├── channel_case.ex └── conn_case.ex └── test_helper.exs /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/.gitignore -------------------------------------------------------------------------------- /app/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/.metadata -------------------------------------------------------------------------------- /app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/Dockerfile -------------------------------------------------------------------------------- /app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/README.md -------------------------------------------------------------------------------- /app/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/analysis_options.yaml -------------------------------------------------------------------------------- /app/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/android/.gitignore -------------------------------------------------------------------------------- /app/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/android/app/build.gradle -------------------------------------------------------------------------------- /app/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /app/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/android/app/src/main/kotlin/com/example/app/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/android/app/src/main/kotlin/com/example/app/MainActivity.kt -------------------------------------------------------------------------------- /app/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /app/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/mipmap-hdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/android/app/src/main/res/mipmap-hdpi/launcher_icon.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/mipmap-mdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/android/app/src/main/res/mipmap-mdpi/launcher_icon.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/mipmap-xhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/android/app/src/main/res/mipmap-xhdpi/launcher_icon.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /app/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /app/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/android/build.gradle -------------------------------------------------------------------------------- /app/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/android/gradle.properties -------------------------------------------------------------------------------- /app/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /app/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/android/settings.gradle -------------------------------------------------------------------------------- /app/assets/icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/assets/icon/icon.png -------------------------------------------------------------------------------- /app/fly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/fly.toml -------------------------------------------------------------------------------- /app/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/ios/.gitignore -------------------------------------------------------------------------------- /app/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /app/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /app/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /app/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /app/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /app/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /app/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /app/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /app/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /app/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /app/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /app/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@1x.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@2x.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /app/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /app/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /app/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/ios/Runner/Info.plist -------------------------------------------------------------------------------- /app/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /app/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/lib/main.dart -------------------------------------------------------------------------------- /app/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /app/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/linux/CMakeLists.txt -------------------------------------------------------------------------------- /app/linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /app/linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /app/linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /app/linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /app/linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/linux/main.cc -------------------------------------------------------------------------------- /app/linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/linux/my_application.cc -------------------------------------------------------------------------------- /app/linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/linux/my_application.h -------------------------------------------------------------------------------- /app/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/macos/.gitignore -------------------------------------------------------------------------------- /app/macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /app/macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /app/macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /app/macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /app/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /app/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /app/macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /app/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /app/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /app/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /app/macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /app/macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /app/macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /app/macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /app/macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /app/macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /app/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/macos/Runner/Info.plist -------------------------------------------------------------------------------- /app/macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /app/macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /app/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/pubspec.yaml -------------------------------------------------------------------------------- /app/pwa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/pwa.md -------------------------------------------------------------------------------- /app/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/test/widget_test.dart -------------------------------------------------------------------------------- /app/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/web/favicon.png -------------------------------------------------------------------------------- /app/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/web/icons/Icon-192.png -------------------------------------------------------------------------------- /app/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/web/icons/Icon-512.png -------------------------------------------------------------------------------- /app/web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /app/web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /app/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/web/index.html -------------------------------------------------------------------------------- /app/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/web/manifest.json -------------------------------------------------------------------------------- /app/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/windows/.gitignore -------------------------------------------------------------------------------- /app/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/windows/CMakeLists.txt -------------------------------------------------------------------------------- /app/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /app/windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /app/windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /app/windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /app/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /app/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/windows/runner/Runner.rc -------------------------------------------------------------------------------- /app/windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /app/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /app/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/windows/runner/main.cpp -------------------------------------------------------------------------------- /app/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/windows/runner/resource.h -------------------------------------------------------------------------------- /app/windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /app/windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /app/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/windows/runner/utils.cpp -------------------------------------------------------------------------------- /app/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/windows/runner/utils.h -------------------------------------------------------------------------------- /app/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /app/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/app/windows/runner/win32_window.h -------------------------------------------------------------------------------- /backend/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/backend/.dockerignore -------------------------------------------------------------------------------- /backend/.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/backend/.formatter.exs -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/backend/README.md -------------------------------------------------------------------------------- /backend/assets/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/backend/assets/css/app.css -------------------------------------------------------------------------------- /backend/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/backend/assets/js/app.js -------------------------------------------------------------------------------- /backend/assets/js/user_socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/backend/assets/js/user_socket.js -------------------------------------------------------------------------------- /backend/assets/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/backend/assets/tailwind.config.js -------------------------------------------------------------------------------- /backend/config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/backend/config/config.exs -------------------------------------------------------------------------------- /backend/config/dev.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/backend/config/dev.exs -------------------------------------------------------------------------------- /backend/config/prod.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/backend/config/prod.exs -------------------------------------------------------------------------------- /backend/config/runtime.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/backend/config/runtime.exs -------------------------------------------------------------------------------- /backend/config/test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/backend/config/test.exs -------------------------------------------------------------------------------- /backend/coveralls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/backend/coveralls.json -------------------------------------------------------------------------------- /backend/fly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/backend/fly.toml -------------------------------------------------------------------------------- /backend/lib/app.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/backend/lib/app.ex -------------------------------------------------------------------------------- /backend/lib/app/application.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/backend/lib/app/application.ex -------------------------------------------------------------------------------- /backend/lib/app_web.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/backend/lib/app_web.ex -------------------------------------------------------------------------------- /backend/lib/app_web/channels/room_channel.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/backend/lib/app_web/channels/room_channel.ex -------------------------------------------------------------------------------- /backend/lib/app_web/channels/user_socket.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/backend/lib/app_web/channels/user_socket.ex -------------------------------------------------------------------------------- /backend/lib/app_web/controllers/error_json.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/backend/lib/app_web/controllers/error_json.ex -------------------------------------------------------------------------------- /backend/lib/app_web/endpoint.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/backend/lib/app_web/endpoint.ex -------------------------------------------------------------------------------- /backend/lib/app_web/presence.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/backend/lib/app_web/presence.ex -------------------------------------------------------------------------------- /backend/lib/app_web/router.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/backend/lib/app_web/router.ex -------------------------------------------------------------------------------- /backend/lib/app_web/telemetry.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/backend/lib/app_web/telemetry.ex -------------------------------------------------------------------------------- /backend/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/backend/mix.exs -------------------------------------------------------------------------------- /backend/mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/backend/mix.lock -------------------------------------------------------------------------------- /backend/priv/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/backend/priv/static/favicon.ico -------------------------------------------------------------------------------- /backend/priv/static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/backend/priv/static/robots.txt -------------------------------------------------------------------------------- /backend/rel/overlays/bin/server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/backend/rel/overlays/bin/server -------------------------------------------------------------------------------- /backend/rel/overlays/bin/server.bat: -------------------------------------------------------------------------------- 1 | set PHX_SERVER=true 2 | call "%~dp0\app" start 3 | -------------------------------------------------------------------------------- /backend/test/app_web/channels/room_channel_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/backend/test/app_web/channels/room_channel_test.exs -------------------------------------------------------------------------------- /backend/test/app_web/controllers/error_json_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/backend/test/app_web/controllers/error_json_test.exs -------------------------------------------------------------------------------- /backend/test/support/channel_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/backend/test/support/channel_case.ex -------------------------------------------------------------------------------- /backend/test/support/conn_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/flutter-phoenix-channels-demo/HEAD/backend/test/support/conn_case.ex -------------------------------------------------------------------------------- /backend/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | --------------------------------------------------------------------------------