├── .gitignore ├── .idea ├── codeStyles │ └── Project.xml ├── encodings.xml ├── libraries │ ├── Dart_SDK.xml │ └── Flutter_Plugins.xml ├── misc.xml ├── modules.xml ├── runConfigurations │ └── example_lib_main_dart.xml ├── vcs.xml └── workspace.xml ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── android ├── .idea │ ├── .gitignore │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml ├── android.iml ├── app │ └── src │ │ └── main │ │ └── java │ │ └── io │ │ └── flutter │ │ └── plugins │ │ └── GeneratedPluginRegistrant.java ├── flutter-plugin-circular_profile_avatar_android.iml └── local.properties ├── circular_profile_avatar.iml ├── example ├── .flutter-plugins-dependencies ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ └── circularprofileimage │ │ │ │ └── suavistech │ │ │ │ └── com │ │ │ │ └── exampleapp │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── ios │ ├── Flutter │ │ ├── .last_build_id │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ ├── Flutter.podspec │ │ ├── Release.xcconfig │ │ └── flutter_export_environment.sh │ ├── Podfile │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── 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 ├── lib │ └── main.dart ├── pubspec.yaml ├── test │ └── widget_test.dart └── web │ ├── favicon.png │ ├── icons │ ├── Icon-192.png │ └── Icon-512.png │ ├── index.html │ └── manifest.json ├── lib └── circular_profile_avatar.dart ├── pubspec.lock ├── pubspec.yaml ├── screenshots └── Screenshot.png └── test └── circular_profile_avatar_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/libraries/Dart_SDK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/.idea/libraries/Dart_SDK.xml -------------------------------------------------------------------------------- /.idea/libraries/Flutter_Plugins.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/.idea/libraries/Flutter_Plugins.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/example_lib_main_dart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/.idea/runConfigurations/example_lib_main_dart.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/.metadata -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/README.md -------------------------------------------------------------------------------- /android/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /android/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/android/.idea/misc.xml -------------------------------------------------------------------------------- /android/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/android/.idea/modules.xml -------------------------------------------------------------------------------- /android/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/android/.idea/vcs.xml -------------------------------------------------------------------------------- /android/android.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/android/android.iml -------------------------------------------------------------------------------- /android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java -------------------------------------------------------------------------------- /android/flutter-plugin-circular_profile_avatar_android.iml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/android/local.properties -------------------------------------------------------------------------------- /circular_profile_avatar.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/circular_profile_avatar.iml -------------------------------------------------------------------------------- /example/.flutter-plugins-dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/.flutter-plugins-dependencies -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/.metadata -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/README.md -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/kotlin/circularprofileimage/suavistech/com/exampleapp/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/android/app/src/main/kotlin/circularprofileimage/suavistech/com/exampleapp/MainActivity.kt -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/ios/Flutter/.last_build_id: -------------------------------------------------------------------------------- 1 | f18db1973244d3336a215c577b19627b -------------------------------------------------------------------------------- /example/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /example/ios/Flutter/Flutter.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/ios/Flutter/Flutter.podspec -------------------------------------------------------------------------------- /example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /example/ios/Flutter/flutter_export_environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/ios/Flutter/flutter_export_environment.sh -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/lib/main.dart -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /example/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/test/widget_test.dart -------------------------------------------------------------------------------- /example/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/web/favicon.png -------------------------------------------------------------------------------- /example/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/web/icons/Icon-192.png -------------------------------------------------------------------------------- /example/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/web/icons/Icon-512.png -------------------------------------------------------------------------------- /example/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/web/index.html -------------------------------------------------------------------------------- /example/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/example/web/manifest.json -------------------------------------------------------------------------------- /lib/circular_profile_avatar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/lib/circular_profile_avatar.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /screenshots/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/screenshots/Screenshot.png -------------------------------------------------------------------------------- /test/circular_profile_avatar_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch-muhammad-adil/flutter-plugin-circular_profile_avatar/HEAD/test/circular_profile_avatar_test.dart --------------------------------------------------------------------------------