├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ ├── google-services.json │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── flutter │ │ │ │ └── incomming_call │ │ │ │ ├── CallActivity.kt │ │ │ │ ├── MainActivity.kt │ │ │ │ └── services │ │ │ │ ├── ActivityUtils.kt │ │ │ │ ├── MyFirebaseMessagingService.kt │ │ │ │ ├── NotificationUtils.kt │ │ │ │ └── Utils.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ ├── bg_button_accept.xml │ │ │ ├── bg_button_decline.xml │ │ │ ├── launch_background.xml │ │ │ ├── rounded_button_accept.xml │ │ │ └── rounded_button_decline.xml │ │ │ ├── drawable │ │ │ ├── blur_bg.png │ │ │ ├── ic_accept.png │ │ │ ├── ic_decline.png │ │ │ ├── ic_logo.png │ │ │ └── launch_background.xml │ │ │ ├── layout-v21 │ │ │ └── notification_alert_layout.xml │ │ │ ├── layout │ │ │ ├── incoming_call.xml │ │ │ └── notification_alert_layout.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── raw │ │ │ └── sound.mp3 │ │ │ ├── values-land │ │ │ └── dimens.xml │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimen.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Podfile ├── 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-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── Runner-Bridging-Header.h └── firebase_app_id_file.json ├── lib ├── accept_call.dart ├── firebase_options.dart ├── main.dart └── reject_call.dart ├── pubspec.lock ├── pubspec.yaml └── test └── widget_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/.metadata -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/android/app/google-services.json -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/flutter/incomming_call/CallActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/android/app/src/main/kotlin/com/flutter/incomming_call/CallActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/flutter/incomming_call/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/android/app/src/main/kotlin/com/flutter/incomming_call/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/flutter/incomming_call/services/ActivityUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/android/app/src/main/kotlin/com/flutter/incomming_call/services/ActivityUtils.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/flutter/incomming_call/services/MyFirebaseMessagingService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/android/app/src/main/kotlin/com/flutter/incomming_call/services/MyFirebaseMessagingService.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/flutter/incomming_call/services/NotificationUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/android/app/src/main/kotlin/com/flutter/incomming_call/services/NotificationUtils.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/flutter/incomming_call/services/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/android/app/src/main/kotlin/com/flutter/incomming_call/services/Utils.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/bg_button_accept.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/android/app/src/main/res/drawable-v21/bg_button_accept.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/bg_button_decline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/android/app/src/main/res/drawable-v21/bg_button_decline.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/rounded_button_accept.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/android/app/src/main/res/drawable-v21/rounded_button_accept.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/rounded_button_decline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/android/app/src/main/res/drawable-v21/rounded_button_decline.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/blur_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/android/app/src/main/res/drawable/blur_bg.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/android/app/src/main/res/drawable/ic_accept.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_decline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/android/app/src/main/res/drawable/ic_decline.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/android/app/src/main/res/drawable/ic_logo.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout-v21/notification_alert_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/android/app/src/main/res/layout-v21/notification_alert_layout.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/incoming_call.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/android/app/src/main/res/layout/incoming_call.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/notification_alert_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/android/app/src/main/res/layout/notification_alert_layout.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/raw/sound.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/android/app/src/main/res/raw/sound.mp3 -------------------------------------------------------------------------------- /android/app/src/main/res/values-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/android/app/src/main/res/values-land/dimens.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/dimen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/android/app/src/main/res/values/dimen.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /ios/firebase_app_id_file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/ios/firebase_app_id_file.json -------------------------------------------------------------------------------- /lib/accept_call.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/lib/accept_call.dart -------------------------------------------------------------------------------- /lib/firebase_options.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/lib/firebase_options.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/reject_call.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/lib/reject_call.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedhaloka/flutter_incoming_call/HEAD/test/widget_test.dart --------------------------------------------------------------------------------