├── .gitignore ├── AspectOrientedProgramming ├── AspectOrientedProgramming.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── AspectOrientedProgramming.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── AspectOrientedProgramming │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Class1.swift │ ├── Info.plist │ ├── TableViewController.swift │ ├── TrackManager │ │ ├── ActionReportManager.swift │ │ ├── TrackManager.swift │ │ └── trackList.csv │ └── ViewController.swift ├── AspectOrientedProgrammingTests │ ├── AspectOrientedProgrammingTests.swift │ └── Info.plist ├── AspectOrientedProgrammingUITests │ ├── AspectOrientedProgrammingUITests.swift │ └── Info.plist ├── Podfile ├── Podfile.lock ├── Pods │ ├── Aspects │ │ ├── Aspects.h │ │ ├── Aspects.m │ │ ├── LICENSE │ │ └── README.md │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── Aspects │ │ ├── Aspects-dummy.m │ │ ├── Aspects-prefix.pch │ │ ├── Aspects-umbrella.h │ │ ├── Aspects.modulemap │ │ ├── Aspects.xcconfig │ │ └── Info.plist │ │ └── Pods-AspectOrientedProgramming │ │ ├── Info.plist │ │ ├── Pods-AspectOrientedProgramming-acknowledgements.markdown │ │ ├── Pods-AspectOrientedProgramming-acknowledgements.plist │ │ ├── Pods-AspectOrientedProgramming-dummy.m │ │ ├── Pods-AspectOrientedProgramming-frameworks.sh │ │ ├── Pods-AspectOrientedProgramming-resources.sh │ │ ├── Pods-AspectOrientedProgramming-umbrella.h │ │ ├── Pods-AspectOrientedProgramming.debug.xcconfig │ │ ├── Pods-AspectOrientedProgramming.modulemap │ │ └── Pods-AspectOrientedProgramming.release.xcconfig └── README.md ├── BugFix ├── DSYMTools.app │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── DSYMTools │ │ ├── PkgInfo │ │ ├── Resources │ │ ├── AboutWindowController.nib │ │ ├── AppIcon.icns │ │ ├── Assets.car │ │ ├── Base.lproj │ │ │ └── MainMenu.nib │ │ └── MainWindowViewController.nib │ │ └── _CodeSignature │ │ └── CodeResources └── README.md ├── FlutterAppDemo ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── flutter_app_layout │ │ │ │ │ └── MainActivity.java │ │ │ └── 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 │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── ios │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ └── Runner │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── main.m ├── lib │ ├── add_example.dart │ ├── fetch_data.dart │ ├── main.dart │ └── net_json.dart ├── pubspec.lock ├── pubspec.yaml └── test │ └── widget_test.dart ├── FlutterProject ├── flutter+pakage │ ├── .vscode │ │ └── launch.json │ ├── app │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── android │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── app │ │ │ │ │ │ │ └── MainActivity.java │ │ │ │ │ └── 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 │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle │ │ ├── ios │ │ │ ├── Flutter │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ └── Release.xcconfig │ │ │ ├── Podfile │ │ │ ├── Podfile.lock │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── Runner │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── main.m │ │ ├── lib │ │ │ └── main.dart │ │ ├── pubspec.lock │ │ ├── pubspec.yaml │ │ └── test │ │ │ └── widget_test.dart │ └── login │ │ ├── .gitignore │ │ ├── .idea │ │ ├── libraries │ │ │ ├── Dart_SDK.xml │ │ │ └── Flutter_for_Android.xml │ │ ├── modules.xml │ │ ├── runConfigurations │ │ │ └── example_lib_main_dart.xml │ │ └── workspace.xml │ │ ├── .metadata │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── android │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── settings.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ └── com │ │ │ └── zhima │ │ │ └── login │ │ │ └── LoginPlugin.java │ │ ├── example │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── android │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── zhima │ │ │ │ │ │ │ └── login_example │ │ │ │ │ │ │ └── MainActivity.java │ │ │ │ │ └── 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 │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle │ │ ├── ios │ │ │ ├── Flutter │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ └── Release.xcconfig │ │ │ ├── Podfile │ │ │ ├── Podfile.lock │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── Runner │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── main.m │ │ ├── lib │ │ │ └── main.dart │ │ ├── pubspec.lock │ │ ├── pubspec.yaml │ │ └── test │ │ │ └── widget_test.dart │ │ ├── ios │ │ ├── .gitignore │ │ ├── Assets │ │ │ └── .gitkeep │ │ └── login.podspec │ │ ├── lib │ │ └── login.dart │ │ ├── login.iml │ │ ├── pubspec.lock │ │ ├── pubspec.yaml │ │ └── test │ │ └── login_test.dart ├── ios+flutter │ ├── .vscode │ │ └── launch.json │ ├── zhima │ │ ├── Podfile │ │ ├── Podfile.lock │ │ ├── Pods │ │ │ ├── Local Podspecs │ │ │ │ ├── Flutter.podspec.json │ │ │ │ └── FlutterPluginRegistrant.podspec.json │ │ │ ├── Manifest.lock │ │ │ ├── Pods.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── Target Support Files │ │ │ │ ├── FlutterPluginRegistrant │ │ │ │ ├── FlutterPluginRegistrant-dummy.m │ │ │ │ ├── FlutterPluginRegistrant-prefix.pch │ │ │ │ ├── FlutterPluginRegistrant-umbrella.h │ │ │ │ ├── FlutterPluginRegistrant.modulemap │ │ │ │ ├── FlutterPluginRegistrant.xcconfig │ │ │ │ └── Info.plist │ │ │ │ ├── Pods-zhima │ │ │ │ ├── Info.plist │ │ │ │ ├── Pods-zhima-acknowledgements.markdown │ │ │ │ ├── Pods-zhima-acknowledgements.plist │ │ │ │ ├── Pods-zhima-dummy.m │ │ │ │ ├── Pods-zhima-frameworks.sh │ │ │ │ ├── Pods-zhima-resources.sh │ │ │ │ ├── Pods-zhima-umbrella.h │ │ │ │ ├── Pods-zhima.debug.xcconfig │ │ │ │ ├── Pods-zhima.modulemap │ │ │ │ └── Pods-zhima.release.xcconfig │ │ │ │ ├── Pods-zhimaTests │ │ │ │ ├── Info.plist │ │ │ │ ├── Pods-zhimaTests-acknowledgements.markdown │ │ │ │ ├── Pods-zhimaTests-acknowledgements.plist │ │ │ │ ├── Pods-zhimaTests-dummy.m │ │ │ │ ├── Pods-zhimaTests-frameworks.sh │ │ │ │ ├── Pods-zhimaTests-resources.sh │ │ │ │ ├── Pods-zhimaTests-umbrella.h │ │ │ │ ├── Pods-zhimaTests.debug.xcconfig │ │ │ │ ├── Pods-zhimaTests.modulemap │ │ │ │ └── Pods-zhimaTests.release.xcconfig │ │ │ │ └── Pods-zhimaUITests │ │ │ │ ├── Info.plist │ │ │ │ ├── Pods-zhimaUITests-acknowledgements.markdown │ │ │ │ ├── Pods-zhimaUITests-acknowledgements.plist │ │ │ │ ├── Pods-zhimaUITests-dummy.m │ │ │ │ ├── Pods-zhimaUITests-frameworks.sh │ │ │ │ ├── Pods-zhimaUITests-resources.sh │ │ │ │ ├── Pods-zhimaUITests-umbrella.h │ │ │ │ ├── Pods-zhimaUITests.debug.xcconfig │ │ │ │ ├── Pods-zhimaUITests.modulemap │ │ │ │ └── Pods-zhimaUITests.release.xcconfig │ │ ├── zhima.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── zhima.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── zhima │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── ViewController.swift │ │ ├── zhimaTests │ │ │ ├── Info.plist │ │ │ └── zhimaTests.swift │ │ ├── zhimaUITests │ │ │ ├── Info.plist │ │ │ └── zhimaUITests.swift │ │ └── zhima_flutter │ │ │ ├── .gitignore │ │ │ ├── .metadata │ │ │ ├── README.md │ │ │ ├── lib │ │ │ └── main.dart │ │ │ ├── pubspec.lock │ │ │ ├── pubspec.yaml │ │ │ ├── test │ │ │ └── widget_test.dart │ │ │ ├── zhima_flutter.iml │ │ │ └── zhima_flutter_android.iml │ └── zhima_flutter │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── lib │ │ └── main.dart │ │ ├── pubspec.lock │ │ ├── pubspec.yaml │ │ ├── test │ │ └── widget_test.dart │ │ ├── zhima_flutter.iml │ │ └── zhima_flutter_android.iml └── mobx-example │ └── mobx_demo │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── android │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── mobx_demo │ │ │ │ │ └── MainActivity.java │ │ │ └── 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 │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle │ ├── ios │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ └── Runner │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── main.m │ ├── lib │ ├── counter.dart │ ├── counter.g.dart │ └── main.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ └── test │ └── widget_test.dart ├── Functional └── functional.playground │ ├── Contents.swift │ └── contents.xcplayground ├── GetNetDataDemo ├── BaseViewModel.swift ├── GND1.gif ├── GND2.gif ├── README.md ├── pic1.png └── pic2.png ├── LeetCode └── test.playground │ ├── Contents.swift │ └── contents.xcplayground ├── LetVarTest ├── LetVarTest │ ├── SingleView.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── SingleView │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.swift │ │ └── img.png │ ├── SingleViewTests │ │ ├── Info.plist │ │ └── SingleViewTests.swift │ └── SingleViewUITests │ │ ├── Info.plist │ │ └── SingleViewUITests.swift └── TestMemory │ ├── TestMemory.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ ├── TestMemory │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.swift │ └── ViewControllers │ │ ├── BaseViewController.swift │ │ └── ComputedPropertiesViewController.swift │ ├── TestMemoryTests │ ├── Info.plist │ └── TestMemoryTests.swift │ └── TestMemoryUITests │ ├── Info.plist │ └── TestMemoryUITests.swift ├── ProjectConnectTest └── charlesproxy401.zip ├── README.md ├── RxSwift └── RxSwiftLeaks │ ├── Podfile │ ├── Podfile.lock │ ├── Pods │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ ├── ReactorKit │ │ ├── LICENSE │ │ ├── README.md │ │ └── Sources │ │ │ ├── ReactorKit │ │ │ ├── ActionSubject.swift │ │ │ ├── AssociatedObjectStore.swift │ │ │ ├── Reactor.swift │ │ │ ├── StateRelay.swift │ │ │ ├── StoryboardView.swift │ │ │ ├── Stub.swift │ │ │ └── View.swift │ │ │ └── ReactorKitRuntime │ │ │ ├── ReactorKitRuntime.m │ │ │ └── include │ │ │ └── ReactorKitRuntime.h │ ├── RxAtomic │ │ ├── LICENSE.md │ │ ├── README.md │ │ └── RxAtomic │ │ │ ├── RxAtomic.c │ │ │ └── include │ │ │ └── RxAtomic.h │ ├── RxCocoa │ │ ├── LICENSE.md │ │ ├── Platform │ │ │ ├── DataStructures │ │ │ │ ├── Bag.swift │ │ │ │ ├── InfiniteSequence.swift │ │ │ │ ├── PriorityQueue.swift │ │ │ │ └── Queue.swift │ │ │ ├── DeprecationWarner.swift │ │ │ ├── DispatchQueue+Extensions.swift │ │ │ ├── Platform.Darwin.swift │ │ │ ├── Platform.Linux.swift │ │ │ └── RecursiveLock.swift │ │ ├── README.md │ │ └── RxCocoa │ │ │ ├── Common │ │ │ ├── Binder.swift │ │ │ ├── ControlTarget.swift │ │ │ ├── DelegateProxy.swift │ │ │ ├── DelegateProxyType.swift │ │ │ ├── KeyPathBinder.swift │ │ │ ├── NSLayoutConstraint+Rx.swift │ │ │ ├── Observable+Bind.swift │ │ │ ├── RxCocoaObjCRuntimeError+Extensions.swift │ │ │ ├── RxTarget.swift │ │ │ ├── SectionedViewDataSourceType.swift │ │ │ └── TextInput.swift │ │ │ ├── Deprecated.swift │ │ │ ├── Foundation │ │ │ ├── KVORepresentable+CoreGraphics.swift │ │ │ ├── KVORepresentable+Swift.swift │ │ │ ├── KVORepresentable.swift │ │ │ ├── Logging.swift │ │ │ ├── NSObject+Rx+KVORepresentable.swift │ │ │ ├── NSObject+Rx+RawRepresentable.swift │ │ │ ├── NSObject+Rx.swift │ │ │ ├── NotificationCenter+Rx.swift │ │ │ └── URLSession+Rx.swift │ │ │ ├── Runtime │ │ │ ├── _RX.m │ │ │ ├── _RXDelegateProxy.m │ │ │ ├── _RXKVOObserver.m │ │ │ ├── _RXObjCRuntime.m │ │ │ └── include │ │ │ │ ├── RxCocoaRuntime.h │ │ │ │ ├── _RX.h │ │ │ │ ├── _RXDelegateProxy.h │ │ │ │ ├── _RXKVOObserver.h │ │ │ │ └── _RXObjCRuntime.h │ │ │ ├── RxCocoa.h │ │ │ ├── RxCocoa.swift │ │ │ ├── Traits │ │ │ ├── BehaviorRelay.swift │ │ │ ├── ControlEvent.swift │ │ │ ├── ControlProperty.swift │ │ │ ├── Driver │ │ │ │ ├── BehaviorRelay+Driver.swift │ │ │ │ ├── ControlEvent+Driver.swift │ │ │ │ ├── ControlProperty+Driver.swift │ │ │ │ ├── Driver+Subscription.swift │ │ │ │ ├── Driver.swift │ │ │ │ └── ObservableConvertibleType+Driver.swift │ │ │ ├── PublishRelay.swift │ │ │ ├── SharedSequence │ │ │ │ ├── ObservableConvertibleType+SharedSequence.swift │ │ │ │ ├── SchedulerType+SharedSequence.swift │ │ │ │ ├── SharedSequence+Operators+arity.swift │ │ │ │ ├── SharedSequence+Operators.swift │ │ │ │ └── SharedSequence.swift │ │ │ └── Signal │ │ │ │ ├── ControlEvent+Signal.swift │ │ │ │ ├── ObservableConvertibleType+Signal.swift │ │ │ │ ├── PublishRelay+Signal.swift │ │ │ │ ├── Signal+Subscription.swift │ │ │ │ └── Signal.swift │ │ │ ├── iOS │ │ │ ├── DataSources │ │ │ │ ├── RxCollectionViewReactiveArrayDataSource.swift │ │ │ │ ├── RxPickerViewAdapter.swift │ │ │ │ └── RxTableViewReactiveArrayDataSource.swift │ │ │ ├── Events │ │ │ │ └── ItemEvents.swift │ │ │ ├── NSTextStorage+Rx.swift │ │ │ ├── Protocols │ │ │ │ ├── RxCollectionViewDataSourceType.swift │ │ │ │ ├── RxPickerViewDataSourceType.swift │ │ │ │ └── RxTableViewDataSourceType.swift │ │ │ ├── Proxies │ │ │ │ ├── RxCollectionViewDataSourcePrefetchingProxy.swift │ │ │ │ ├── RxCollectionViewDataSourceProxy.swift │ │ │ │ ├── RxCollectionViewDelegateProxy.swift │ │ │ │ ├── RxNavigationControllerDelegateProxy.swift │ │ │ │ ├── RxPickerViewDataSourceProxy.swift │ │ │ │ ├── RxPickerViewDelegateProxy.swift │ │ │ │ ├── RxScrollViewDelegateProxy.swift │ │ │ │ ├── RxSearchBarDelegateProxy.swift │ │ │ │ ├── RxSearchControllerDelegateProxy.swift │ │ │ │ ├── RxTabBarControllerDelegateProxy.swift │ │ │ │ ├── RxTabBarDelegateProxy.swift │ │ │ │ ├── RxTableViewDataSourcePrefetchingProxy.swift │ │ │ │ ├── RxTableViewDataSourceProxy.swift │ │ │ │ ├── RxTableViewDelegateProxy.swift │ │ │ │ ├── RxTextStorageDelegateProxy.swift │ │ │ │ ├── RxTextViewDelegateProxy.swift │ │ │ │ └── RxWebViewDelegateProxy.swift │ │ │ ├── UIActivityIndicatorView+Rx.swift │ │ │ ├── UIAlertAction+Rx.swift │ │ │ ├── UIApplication+Rx.swift │ │ │ ├── UIBarButtonItem+Rx.swift │ │ │ ├── UIButton+Rx.swift │ │ │ ├── UICollectionView+Rx.swift │ │ │ ├── UIControl+Rx.swift │ │ │ ├── UIDatePicker+Rx.swift │ │ │ ├── UIGestureRecognizer+Rx.swift │ │ │ ├── UIImageView+Rx.swift │ │ │ ├── UILabel+Rx.swift │ │ │ ├── UINavigationController+Rx.swift │ │ │ ├── UINavigationItem+Rx.swift │ │ │ ├── UIPageControl+Rx.swift │ │ │ ├── UIPickerView+Rx.swift │ │ │ ├── UIProgressView+Rx.swift │ │ │ ├── UIRefreshControl+Rx.swift │ │ │ ├── UIScrollView+Rx.swift │ │ │ ├── UISearchBar+Rx.swift │ │ │ ├── UISearchController+Rx.swift │ │ │ ├── UISegmentedControl+Rx.swift │ │ │ ├── UISlider+Rx.swift │ │ │ ├── UIStepper+Rx.swift │ │ │ ├── UISwitch+Rx.swift │ │ │ ├── UITabBar+Rx.swift │ │ │ ├── UITabBarController+Rx.swift │ │ │ ├── UITabBarItem+Rx.swift │ │ │ ├── UITableView+Rx.swift │ │ │ ├── UITextField+Rx.swift │ │ │ ├── UITextView+Rx.swift │ │ │ ├── UIView+Rx.swift │ │ │ ├── UIViewController+Rx.swift │ │ │ └── UIWebView+Rx.swift │ │ │ └── macOS │ │ │ ├── NSButton+Rx.swift │ │ │ ├── NSControl+Rx.swift │ │ │ ├── NSImageView+Rx.swift │ │ │ ├── NSSlider+Rx.swift │ │ │ ├── NSTextField+Rx.swift │ │ │ ├── NSTextView+Rx.swift │ │ │ └── NSView+Rx.swift │ ├── RxGesture │ │ ├── LICENSE │ │ ├── Pod │ │ │ └── Classes │ │ │ │ ├── GestureFactory.swift │ │ │ │ ├── GestureRecognizer+RxGesture.swift │ │ │ │ ├── RxGestureRecognizerDelegate.swift │ │ │ │ ├── SharedTypes.swift │ │ │ │ ├── View+RxGesture.swift │ │ │ │ └── iOS │ │ │ │ ├── ForceTouchGestureRecognizer.swift │ │ │ │ ├── TouchDownGestureRecognizer.swift │ │ │ │ ├── TransformGestureRecognizers.swift │ │ │ │ ├── UILongPressGestureRecognizer+RxGesture.swift │ │ │ │ ├── UIPanGestureRecognizer+RxGesture.swift │ │ │ │ ├── UIPinchGestureRecognizer+RxGesture.swift │ │ │ │ ├── UIRotationGestureRecognizer+RxGesture.swift │ │ │ │ ├── UIScreenEdgePanGestureRecognizer+RxGesture.swift │ │ │ │ ├── UISwipeGestureRecognizer+RxGesture.swift │ │ │ │ └── UITapGestureRecognizer+RxGesture.swift │ │ └── README.md │ ├── RxSwift │ │ ├── LICENSE.md │ │ ├── Platform │ │ │ ├── AtomicInt.swift │ │ │ ├── DataStructures │ │ │ │ ├── Bag.swift │ │ │ │ ├── InfiniteSequence.swift │ │ │ │ ├── PriorityQueue.swift │ │ │ │ └── Queue.swift │ │ │ ├── DeprecationWarner.swift │ │ │ ├── DispatchQueue+Extensions.swift │ │ │ ├── Platform.Darwin.swift │ │ │ ├── Platform.Linux.swift │ │ │ └── RecursiveLock.swift │ │ ├── README.md │ │ └── RxSwift │ │ │ ├── AnyObserver.swift │ │ │ ├── Cancelable.swift │ │ │ ├── Concurrency │ │ │ ├── AsyncLock.swift │ │ │ ├── Lock.swift │ │ │ ├── LockOwnerType.swift │ │ │ ├── SynchronizedDisposeType.swift │ │ │ ├── SynchronizedOnType.swift │ │ │ └── SynchronizedUnsubscribeType.swift │ │ │ ├── ConnectableObservableType.swift │ │ │ ├── Deprecated.swift │ │ │ ├── Disposable.swift │ │ │ ├── Disposables │ │ │ ├── AnonymousDisposable.swift │ │ │ ├── BinaryDisposable.swift │ │ │ ├── BooleanDisposable.swift │ │ │ ├── CompositeDisposable.swift │ │ │ ├── Disposables.swift │ │ │ ├── DisposeBag.swift │ │ │ ├── DisposeBase.swift │ │ │ ├── NopDisposable.swift │ │ │ ├── RefCountDisposable.swift │ │ │ ├── ScheduledDisposable.swift │ │ │ ├── SerialDisposable.swift │ │ │ ├── SingleAssignmentDisposable.swift │ │ │ └── SubscriptionDisposable.swift │ │ │ ├── Errors.swift │ │ │ ├── Event.swift │ │ │ ├── Extensions │ │ │ ├── Bag+Rx.swift │ │ │ └── String+Rx.swift │ │ │ ├── GroupedObservable.swift │ │ │ ├── ImmediateSchedulerType.swift │ │ │ ├── Observable.swift │ │ │ ├── ObservableConvertibleType.swift │ │ │ ├── ObservableType+Extensions.swift │ │ │ ├── ObservableType.swift │ │ │ ├── Observables │ │ │ ├── AddRef.swift │ │ │ ├── Amb.swift │ │ │ ├── AsMaybe.swift │ │ │ ├── AsSingle.swift │ │ │ ├── Buffer.swift │ │ │ ├── Catch.swift │ │ │ ├── CombineLatest+Collection.swift │ │ │ ├── CombineLatest+arity.swift │ │ │ ├── CombineLatest.swift │ │ │ ├── Concat.swift │ │ │ ├── Create.swift │ │ │ ├── Debounce.swift │ │ │ ├── Debug.swift │ │ │ ├── DefaultIfEmpty.swift │ │ │ ├── Deferred.swift │ │ │ ├── Delay.swift │ │ │ ├── DelaySubscription.swift │ │ │ ├── Dematerialize.swift │ │ │ ├── DistinctUntilChanged.swift │ │ │ ├── Do.swift │ │ │ ├── ElementAt.swift │ │ │ ├── Empty.swift │ │ │ ├── Enumerated.swift │ │ │ ├── Error.swift │ │ │ ├── Filter.swift │ │ │ ├── First.swift │ │ │ ├── Generate.swift │ │ │ ├── GroupBy.swift │ │ │ ├── Just.swift │ │ │ ├── Map.swift │ │ │ ├── Materialize.swift │ │ │ ├── Merge.swift │ │ │ ├── Multicast.swift │ │ │ ├── Never.swift │ │ │ ├── ObserveOn.swift │ │ │ ├── Optional.swift │ │ │ ├── Producer.swift │ │ │ ├── Range.swift │ │ │ ├── Reduce.swift │ │ │ ├── Repeat.swift │ │ │ ├── RetryWhen.swift │ │ │ ├── Sample.swift │ │ │ ├── Scan.swift │ │ │ ├── Sequence.swift │ │ │ ├── ShareReplayScope.swift │ │ │ ├── SingleAsync.swift │ │ │ ├── Sink.swift │ │ │ ├── Skip.swift │ │ │ ├── SkipUntil.swift │ │ │ ├── SkipWhile.swift │ │ │ ├── StartWith.swift │ │ │ ├── SubscribeOn.swift │ │ │ ├── Switch.swift │ │ │ ├── SwitchIfEmpty.swift │ │ │ ├── Take.swift │ │ │ ├── TakeLast.swift │ │ │ ├── TakeUntil.swift │ │ │ ├── TakeWhile.swift │ │ │ ├── Throttle.swift │ │ │ ├── Timeout.swift │ │ │ ├── Timer.swift │ │ │ ├── ToArray.swift │ │ │ ├── Using.swift │ │ │ ├── Window.swift │ │ │ ├── WithLatestFrom.swift │ │ │ ├── Zip+Collection.swift │ │ │ ├── Zip+arity.swift │ │ │ └── Zip.swift │ │ │ ├── ObserverType.swift │ │ │ ├── Observers │ │ │ ├── AnonymousObserver.swift │ │ │ ├── ObserverBase.swift │ │ │ └── TailRecursiveSink.swift │ │ │ ├── Reactive.swift │ │ │ ├── Rx.swift │ │ │ ├── RxMutableBox.swift │ │ │ ├── SchedulerType.swift │ │ │ ├── Schedulers │ │ │ ├── ConcurrentDispatchQueueScheduler.swift │ │ │ ├── ConcurrentMainScheduler.swift │ │ │ ├── CurrentThreadScheduler.swift │ │ │ ├── HistoricalScheduler.swift │ │ │ ├── HistoricalSchedulerTimeConverter.swift │ │ │ ├── Internal │ │ │ │ ├── DispatchQueueConfiguration.swift │ │ │ │ ├── InvocableScheduledItem.swift │ │ │ │ ├── InvocableType.swift │ │ │ │ ├── ScheduledItem.swift │ │ │ │ └── ScheduledItemType.swift │ │ │ ├── MainScheduler.swift │ │ │ ├── OperationQueueScheduler.swift │ │ │ ├── RecursiveScheduler.swift │ │ │ ├── SchedulerServices+Emulation.swift │ │ │ ├── SerialDispatchQueueScheduler.swift │ │ │ ├── VirtualTimeConverterType.swift │ │ │ └── VirtualTimeScheduler.swift │ │ │ ├── Subjects │ │ │ ├── AsyncSubject.swift │ │ │ ├── BehaviorSubject.swift │ │ │ ├── PublishSubject.swift │ │ │ ├── ReplaySubject.swift │ │ │ └── SubjectType.swift │ │ │ ├── SwiftSupport │ │ │ └── SwiftSupport.swift │ │ │ └── Traits │ │ │ ├── Completable+AndThen.swift │ │ │ ├── Completable.swift │ │ │ ├── Maybe.swift │ │ │ ├── ObservableType+PrimitiveSequence.swift │ │ │ ├── PrimitiveSequence+Zip+arity.swift │ │ │ ├── PrimitiveSequence.swift │ │ │ └── Single.swift │ └── Target Support Files │ │ ├── Pods-RxSwiftLeaks │ │ ├── Info.plist │ │ ├── Pods-RxSwiftLeaks-acknowledgements.markdown │ │ ├── Pods-RxSwiftLeaks-acknowledgements.plist │ │ ├── Pods-RxSwiftLeaks-dummy.m │ │ ├── Pods-RxSwiftLeaks-frameworks.sh │ │ ├── Pods-RxSwiftLeaks-resources.sh │ │ ├── Pods-RxSwiftLeaks-umbrella.h │ │ ├── Pods-RxSwiftLeaks.debug.xcconfig │ │ ├── Pods-RxSwiftLeaks.modulemap │ │ └── Pods-RxSwiftLeaks.release.xcconfig │ │ ├── Pods-RxSwiftLeaksTests │ │ ├── Info.plist │ │ ├── Pods-RxSwiftLeaksTests-acknowledgements.markdown │ │ ├── Pods-RxSwiftLeaksTests-acknowledgements.plist │ │ ├── Pods-RxSwiftLeaksTests-dummy.m │ │ ├── Pods-RxSwiftLeaksTests-frameworks.sh │ │ ├── Pods-RxSwiftLeaksTests-resources.sh │ │ ├── Pods-RxSwiftLeaksTests-umbrella.h │ │ ├── Pods-RxSwiftLeaksTests.debug.xcconfig │ │ ├── Pods-RxSwiftLeaksTests.modulemap │ │ └── Pods-RxSwiftLeaksTests.release.xcconfig │ │ ├── Pods-RxSwiftLeaksUITests │ │ ├── Info.plist │ │ ├── Pods-RxSwiftLeaksUITests-acknowledgements.markdown │ │ ├── Pods-RxSwiftLeaksUITests-acknowledgements.plist │ │ ├── Pods-RxSwiftLeaksUITests-dummy.m │ │ ├── Pods-RxSwiftLeaksUITests-frameworks.sh │ │ ├── Pods-RxSwiftLeaksUITests-resources.sh │ │ ├── Pods-RxSwiftLeaksUITests-umbrella.h │ │ ├── Pods-RxSwiftLeaksUITests.debug.xcconfig │ │ ├── Pods-RxSwiftLeaksUITests.modulemap │ │ └── Pods-RxSwiftLeaksUITests.release.xcconfig │ │ ├── ReactorKit │ │ ├── Info.plist │ │ ├── ReactorKit-dummy.m │ │ ├── ReactorKit-prefix.pch │ │ ├── ReactorKit-umbrella.h │ │ ├── ReactorKit.modulemap │ │ └── ReactorKit.xcconfig │ │ ├── RxAtomic │ │ ├── Info.plist │ │ ├── RxAtomic-dummy.m │ │ ├── RxAtomic-prefix.pch │ │ ├── RxAtomic-umbrella.h │ │ ├── RxAtomic.modulemap │ │ └── RxAtomic.xcconfig │ │ ├── RxCocoa │ │ ├── Info.plist │ │ ├── RxCocoa-dummy.m │ │ ├── RxCocoa-prefix.pch │ │ ├── RxCocoa-umbrella.h │ │ ├── RxCocoa.modulemap │ │ └── RxCocoa.xcconfig │ │ ├── RxGesture │ │ ├── Info.plist │ │ ├── RxGesture-dummy.m │ │ ├── RxGesture-prefix.pch │ │ ├── RxGesture-umbrella.h │ │ ├── RxGesture.modulemap │ │ └── RxGesture.xcconfig │ │ └── RxSwift │ │ ├── Info.plist │ │ ├── RxSwift-dummy.m │ │ ├── RxSwift-prefix.pch │ │ ├── RxSwift-umbrella.h │ │ ├── RxSwift.modulemap │ │ └── RxSwift.xcconfig │ ├── RxSwiftLeaks.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ ├── RxSwiftLeaks.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ ├── RxSwiftLeaks │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── TestController │ │ ├── TestController.swift │ │ └── TestMVVM.swift │ └── ViewController.swift │ ├── RxSwiftLeaksTests │ ├── Info.plist │ └── RxSwiftLeaksTests.swift │ └── RxSwiftLeaksUITests │ ├── Info.plist │ └── RxSwiftLeaksUITests.swift ├── SourceryTutorial ├── README.md ├── SingleView │ ├── Podfile │ ├── Podfile.lock │ ├── Pods │ │ ├── Manifest.lock │ │ ├── ObjectMapper │ │ │ ├── LICENSE │ │ │ ├── README-CN.md │ │ │ └── Sources │ │ │ │ ├── CodableTransform.swift │ │ │ │ ├── CustomDateFormatTransform.swift │ │ │ │ ├── DataTransform.swift │ │ │ │ ├── DateFormatterTransform.swift │ │ │ │ ├── DateTransform.swift │ │ │ │ ├── DictionaryTransform.swift │ │ │ │ ├── EnumOperators.swift │ │ │ │ ├── EnumTransform.swift │ │ │ │ ├── FromJSON.swift │ │ │ │ ├── HexColorTransform.swift │ │ │ │ ├── ISO8601DateTransform.swift │ │ │ │ ├── ImmutableMappable.swift │ │ │ │ ├── IntegerOperators.swift │ │ │ │ ├── Map.swift │ │ │ │ ├── MapError.swift │ │ │ │ ├── Mappable.swift │ │ │ │ ├── Mapper.swift │ │ │ │ ├── NSDecimalNumberTransform.swift │ │ │ │ ├── Operators.swift │ │ │ │ ├── ToJSON.swift │ │ │ │ ├── TransformOf.swift │ │ │ │ ├── TransformOperators.swift │ │ │ │ ├── TransformType.swift │ │ │ │ └── URLTransform.swift │ │ ├── Pods.xcodeproj │ │ │ └── project.pbxproj │ │ ├── Sourcery │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Resources │ │ │ │ ├── daemon.gif │ │ │ │ └── icon-128.png │ │ │ ├── Sourcery.build │ │ │ │ └── Release │ │ │ │ │ └── Sourcery.build │ │ │ │ │ └── dgph │ │ │ ├── Sourcery.docset │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources │ │ │ │ │ ├── Documents │ │ │ │ │ ├── Classes │ │ │ │ │ │ ├── ArrayType.html │ │ │ │ │ │ ├── AssociatedValue.html │ │ │ │ │ │ ├── Attribute.html │ │ │ │ │ │ ├── Class.html │ │ │ │ │ │ ├── ClosureType.html │ │ │ │ │ │ ├── DictionaryType.html │ │ │ │ │ │ ├── Enum.html │ │ │ │ │ │ ├── EnumCase.html │ │ │ │ │ │ ├── GenericType.html │ │ │ │ │ │ ├── GenericTypeParameter.html │ │ │ │ │ │ ├── Method.html │ │ │ │ │ │ ├── MethodParameter.html │ │ │ │ │ │ ├── Protocol.html │ │ │ │ │ │ ├── Struct.html │ │ │ │ │ │ ├── Subscript.html │ │ │ │ │ │ ├── TupleElement.html │ │ │ │ │ │ ├── TupleType.html │ │ │ │ │ │ ├── Type.html │ │ │ │ │ │ ├── TypeName.html │ │ │ │ │ │ ├── Types.html │ │ │ │ │ │ └── Variable.html │ │ │ │ │ ├── Examples.html │ │ │ │ │ ├── Guides.html │ │ │ │ │ ├── Other Guides.html │ │ │ │ │ ├── Other Protocols.html │ │ │ │ │ ├── Protocols │ │ │ │ │ │ ├── Annotated.html │ │ │ │ │ │ ├── Definition.html │ │ │ │ │ │ └── Typed.html │ │ │ │ │ ├── Types.html │ │ │ │ │ ├── badge.svg │ │ │ │ │ ├── codable.html │ │ │ │ │ ├── css │ │ │ │ │ │ ├── highlight.css │ │ │ │ │ │ └── jazzy.css │ │ │ │ │ ├── decorator.html │ │ │ │ │ ├── diffable.html │ │ │ │ │ ├── enum-cases.html │ │ │ │ │ ├── equatable.html │ │ │ │ │ ├── hashable.html │ │ │ │ │ ├── img │ │ │ │ │ │ ├── carat.png │ │ │ │ │ │ ├── dash.png │ │ │ │ │ │ └── gh.png │ │ │ │ │ ├── index.html │ │ │ │ │ ├── installing.html │ │ │ │ │ ├── js │ │ │ │ │ │ ├── jazzy.js │ │ │ │ │ │ └── jquery.min.js │ │ │ │ │ ├── lenses.html │ │ │ │ │ ├── linuxmain.html │ │ │ │ │ ├── mocks.html │ │ │ │ │ ├── search.json │ │ │ │ │ ├── undocumented.json │ │ │ │ │ ├── usage.html │ │ │ │ │ └── writing-templates.html │ │ │ │ │ └── docSet.dsidx │ │ │ ├── Templates │ │ │ │ ├── AutoCases.stencil │ │ │ │ ├── AutoCodable.swifttemplate │ │ │ │ ├── AutoEquatable.stencil │ │ │ │ ├── AutoHashable.stencil │ │ │ │ ├── AutoLenses.stencil │ │ │ │ ├── AutoMockable.stencil │ │ │ │ ├── Decorator.swifttemplate │ │ │ │ └── LinuxMain.stencil │ │ │ └── bin │ │ │ │ ├── Sourcery.app │ │ │ │ └── Contents │ │ │ │ │ ├── Frameworks │ │ │ │ │ ├── AEXML.framework │ │ │ │ │ │ ├── AEXML │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ ├── AEXML │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ ├── AEXML │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ ├── Commander.framework │ │ │ │ │ │ ├── Commander │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ ├── Commander │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ ├── Commander │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ ├── PathKit.framework │ │ │ │ │ │ ├── PathKit │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ ├── PathKit │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ ├── PathKit │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ ├── SWXMLHash.framework │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ ├── SWXMLHash │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ │ └── SWXMLHash │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ │ └── SWXMLHash │ │ │ │ │ ├── SourceKittenFramework.framework │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ ├── SourceKittenFramework │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ │ └── SourceKittenFramework │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ │ └── SourceKittenFramework │ │ │ │ │ ├── SourceryJS.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ ├── SourceryJS-Swift.h │ │ │ │ │ │ │ └── SourceryJS.h │ │ │ │ │ │ ├── Modules │ │ │ │ │ │ │ ├── SourceryJS.swiftmodule │ │ │ │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ │ │ │ └── module.modulemap │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── ejs.js │ │ │ │ │ │ ├── SourceryJS │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ ├── SourceryJS-Swift.h │ │ │ │ │ │ │ │ └── SourceryJS.h │ │ │ │ │ │ │ ├── Modules │ │ │ │ │ │ │ │ ├── SourceryJS.swiftmodule │ │ │ │ │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ │ │ │ │ └── module.modulemap │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ └── ejs.js │ │ │ │ │ │ │ └── SourceryJS │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ ├── SourceryJS-Swift.h │ │ │ │ │ │ │ └── SourceryJS.h │ │ │ │ │ │ │ ├── Modules │ │ │ │ │ │ │ ├── SourceryJS.swiftmodule │ │ │ │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ │ │ │ └── module.modulemap │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── ejs.js │ │ │ │ │ │ │ └── SourceryJS │ │ │ │ │ ├── SourceryRuntime.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ ├── SourceryRuntime-Swift.h │ │ │ │ │ │ │ └── SourceryRuntime.h │ │ │ │ │ │ ├── Modules │ │ │ │ │ │ │ ├── SourceryRuntime.swiftmodule │ │ │ │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ │ │ │ └── module.modulemap │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ ├── SourceryRuntime │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ ├── SourceryRuntime-Swift.h │ │ │ │ │ │ │ │ └── SourceryRuntime.h │ │ │ │ │ │ │ ├── Modules │ │ │ │ │ │ │ │ ├── SourceryRuntime.swiftmodule │ │ │ │ │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ │ │ │ │ └── module.modulemap │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ │ └── SourceryRuntime │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ ├── SourceryRuntime-Swift.h │ │ │ │ │ │ │ └── SourceryRuntime.h │ │ │ │ │ │ │ ├── Modules │ │ │ │ │ │ │ ├── SourceryRuntime.swiftmodule │ │ │ │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ │ │ │ └── module.modulemap │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ │ └── SourceryRuntime │ │ │ │ │ ├── SourcerySwift.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ ├── SourcerySwift-Swift.h │ │ │ │ │ │ │ └── SourcerySwift.h │ │ │ │ │ │ ├── Modules │ │ │ │ │ │ │ ├── SourcerySwift.swiftmodule │ │ │ │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ │ │ │ └── module.modulemap │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ ├── SourcerySwift │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ ├── Frameworks │ │ │ │ │ │ │ │ └── SourceryRuntime.framework │ │ │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ │ ├── SourceryRuntime-Swift.h │ │ │ │ │ │ │ │ │ └── SourceryRuntime.h │ │ │ │ │ │ │ │ │ ├── Modules │ │ │ │ │ │ │ │ │ ├── SourceryRuntime.swiftmodule │ │ │ │ │ │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ │ │ │ │ │ └── module.modulemap │ │ │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ │ │ │ ├── SourceryRuntime │ │ │ │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ │ │ ├── SourceryRuntime-Swift.h │ │ │ │ │ │ │ │ │ │ └── SourceryRuntime.h │ │ │ │ │ │ │ │ │ ├── Modules │ │ │ │ │ │ │ │ │ │ ├── SourceryRuntime.swiftmodule │ │ │ │ │ │ │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ │ │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ │ │ │ │ │ │ └── module.modulemap │ │ │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ │ │ │ └── SourceryRuntime │ │ │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ │ ├── SourceryRuntime-Swift.h │ │ │ │ │ │ │ │ │ └── SourceryRuntime.h │ │ │ │ │ │ │ │ │ ├── Modules │ │ │ │ │ │ │ │ │ ├── SourceryRuntime.swiftmodule │ │ │ │ │ │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ │ │ │ │ │ └── module.modulemap │ │ │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ │ │ │ └── SourceryRuntime │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ ├── SourcerySwift-Swift.h │ │ │ │ │ │ │ │ └── SourcerySwift.h │ │ │ │ │ │ │ ├── Modules │ │ │ │ │ │ │ │ ├── SourcerySwift.swiftmodule │ │ │ │ │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ │ │ │ │ └── module.modulemap │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ │ └── SourcerySwift │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ ├── Frameworks │ │ │ │ │ │ │ └── SourceryRuntime.framework │ │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ ├── SourceryRuntime-Swift.h │ │ │ │ │ │ │ │ └── SourceryRuntime.h │ │ │ │ │ │ │ │ ├── Modules │ │ │ │ │ │ │ │ ├── SourceryRuntime.swiftmodule │ │ │ │ │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ │ │ │ │ └── module.modulemap │ │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ │ │ ├── SourceryRuntime │ │ │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ │ ├── SourceryRuntime-Swift.h │ │ │ │ │ │ │ │ │ └── SourceryRuntime.h │ │ │ │ │ │ │ │ ├── Modules │ │ │ │ │ │ │ │ │ ├── SourceryRuntime.swiftmodule │ │ │ │ │ │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ │ │ │ │ │ └── module.modulemap │ │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ │ │ └── SourceryRuntime │ │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ ├── SourceryRuntime-Swift.h │ │ │ │ │ │ │ │ └── SourceryRuntime.h │ │ │ │ │ │ │ │ ├── Modules │ │ │ │ │ │ │ │ ├── SourceryRuntime.swiftmodule │ │ │ │ │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ │ │ │ │ └── module.modulemap │ │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ │ │ └── SourceryRuntime │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ ├── SourcerySwift-Swift.h │ │ │ │ │ │ │ └── SourcerySwift.h │ │ │ │ │ │ │ ├── Modules │ │ │ │ │ │ │ ├── SourcerySwift.swiftmodule │ │ │ │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ │ │ │ └── module.modulemap │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ │ └── SourcerySwift │ │ │ │ │ ├── Stencil.framework │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ ├── Stencil │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ │ └── Stencil │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ │ └── Stencil │ │ │ │ │ ├── StencilSwiftKit.framework │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ ├── StencilSwiftKit │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ │ └── StencilSwiftKit │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ │ └── StencilSwiftKit │ │ │ │ │ ├── SwiftTryCatch.framework │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ ├── SwiftTryCatch │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ │ └── SwiftTryCatch │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ │ └── SwiftTryCatch │ │ │ │ │ ├── Yams.framework │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ ├── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ │ │ └── Yams │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ │ │ └── Yams │ │ │ │ │ │ └── Yams │ │ │ │ │ ├── libswiftAppKit.dylib │ │ │ │ │ ├── libswiftCore.dylib │ │ │ │ │ ├── libswiftCoreData.dylib │ │ │ │ │ ├── libswiftCoreFoundation.dylib │ │ │ │ │ ├── libswiftCoreGraphics.dylib │ │ │ │ │ ├── libswiftCoreImage.dylib │ │ │ │ │ ├── libswiftDarwin.dylib │ │ │ │ │ ├── libswiftDispatch.dylib │ │ │ │ │ ├── libswiftFoundation.dylib │ │ │ │ │ ├── libswiftIOKit.dylib │ │ │ │ │ ├── libswiftMetal.dylib │ │ │ │ │ ├── libswiftObjectiveC.dylib │ │ │ │ │ ├── libswiftQuartzCore.dylib │ │ │ │ │ ├── libswiftXPC.dylib │ │ │ │ │ ├── libswiftos.dylib │ │ │ │ │ └── xcproj.framework │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ ├── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ │ └── xcproj │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ │ └── xcproj │ │ │ │ │ │ └── xcproj │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── MacOS │ │ │ │ │ └── Sourcery │ │ │ │ │ ├── PkgInfo │ │ │ │ │ └── Resources │ │ │ │ │ └── libswiftRemoteMirror.dylib │ │ │ │ └── sourcery │ │ └── Target Support Files │ │ │ ├── ObjectMapper │ │ │ ├── Info.plist │ │ │ ├── ObjectMapper-dummy.m │ │ │ ├── ObjectMapper-prefix.pch │ │ │ ├── ObjectMapper-umbrella.h │ │ │ ├── ObjectMapper.modulemap │ │ │ └── ObjectMapper.xcconfig │ │ │ ├── Pods-SingleView │ │ │ ├── Info.plist │ │ │ ├── Pods-SingleView-acknowledgements.markdown │ │ │ ├── Pods-SingleView-acknowledgements.plist │ │ │ ├── Pods-SingleView-dummy.m │ │ │ ├── Pods-SingleView-frameworks.sh │ │ │ ├── Pods-SingleView-resources.sh │ │ │ ├── Pods-SingleView-umbrella.h │ │ │ ├── Pods-SingleView.debug.xcconfig │ │ │ ├── Pods-SingleView.modulemap │ │ │ └── Pods-SingleView.release.xcconfig │ │ │ ├── Pods-SingleViewTests │ │ │ ├── Info.plist │ │ │ ├── Pods-SingleViewTests-acknowledgements.markdown │ │ │ ├── Pods-SingleViewTests-acknowledgements.plist │ │ │ ├── Pods-SingleViewTests-dummy.m │ │ │ ├── Pods-SingleViewTests-frameworks.sh │ │ │ ├── Pods-SingleViewTests-resources.sh │ │ │ ├── Pods-SingleViewTests-umbrella.h │ │ │ ├── Pods-SingleViewTests.debug.xcconfig │ │ │ ├── Pods-SingleViewTests.modulemap │ │ │ └── Pods-SingleViewTests.release.xcconfig │ │ │ └── Pods-SingleViewUITests │ │ │ ├── Info.plist │ │ │ ├── Pods-SingleViewUITests-acknowledgements.markdown │ │ │ ├── Pods-SingleViewUITests-acknowledgements.plist │ │ │ ├── Pods-SingleViewUITests-dummy.m │ │ │ ├── Pods-SingleViewUITests-frameworks.sh │ │ │ ├── Pods-SingleViewUITests-resources.sh │ │ │ ├── Pods-SingleViewUITests-umbrella.h │ │ │ ├── Pods-SingleViewUITests.debug.xcconfig │ │ │ ├── Pods-SingleViewUITests.modulemap │ │ │ └── Pods-SingleViewUITests.release.xcconfig │ ├── SingleView.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── SingleView.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── SingleView │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── Model.generated.swift │ │ ├── Model.stencil │ │ ├── Model.swift │ │ └── ViewController.swift │ ├── SingleViewTests │ │ ├── Info.plist │ │ └── SingleViewTests.swift │ └── SingleViewUITests │ │ ├── Info.plist │ │ └── SingleViewUITests.swift └── SourceryTutorial-starter.zip ├── TestLifeCycle ├── test.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── test │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── testTests │ ├── Info.plist │ └── testTests.swift └── testUITests │ ├── Info.plist │ └── testUITests.swift ├── TestSwift ├── RM.txt ├── Test.swift └── result ├── mapFliterReduce └── mapFliterReduce.playground │ ├── Contents.swift │ └── contents.xcplayground ├── testCTMdeiator ├── Podfile ├── Podfile.lock ├── Pods │ ├── CTMediator │ │ ├── CTMediator │ │ │ └── CTMediator │ │ │ │ ├── CTMediator.h │ │ │ │ └── CTMediator.m │ │ ├── FILE_LICENSE │ │ └── readme.md │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── CTMediator │ │ ├── CTMediator-dummy.m │ │ ├── CTMediator-prefix.pch │ │ ├── CTMediator-umbrella.h │ │ ├── CTMediator.modulemap │ │ ├── CTMediator.xcconfig │ │ └── Info.plist │ │ └── Pods-testCTMdeiator │ │ ├── Info.plist │ │ ├── Pods-testCTMdeiator-acknowledgements.markdown │ │ ├── Pods-testCTMdeiator-acknowledgements.plist │ │ ├── Pods-testCTMdeiator-dummy.m │ │ ├── Pods-testCTMdeiator-frameworks.sh │ │ ├── Pods-testCTMdeiator-resources.sh │ │ ├── Pods-testCTMdeiator-umbrella.h │ │ ├── Pods-testCTMdeiator.debug.xcconfig │ │ ├── Pods-testCTMdeiator.modulemap │ │ └── Pods-testCTMdeiator.release.xcconfig ├── testCTMdeiator.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── testCTMdeiator.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── testCTMdeiator │ ├── MainProject │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.swift │ │ ├── 复杂的不易拆分的B部分 │ │ │ └── ViewControllerB.swift │ │ └── 此文件夹位于主工程中,为了 A 不依赖 B,在主工程中创建支持调起 B 的分类(若日后 B 组件化可以再次页面修改 B 的对外信息) │ │ │ └── CTMediator+A2.swift │ └── 此文件夹处于子模块项目中:已经分离的组件A,调用了B,但是只依赖CTMeditor │ │ ├── Target.swift │ │ └── ViewControllerA.swift ├── testCTMdeiatorTests │ ├── Info.plist │ └── testCTMdeiatorTests.swift └── testCTMdeiatorUITests │ ├── Info.plist │ └── testCTMdeiatorUITests.swift └── testTableview ├── README.md ├── testTableview.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── testTableview ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── ViewController.h ├── ViewController.m └── main.m ├── testTableviewTests ├── Info.plist └── testTableviewTests.m └── testTableviewUITests ├── Info.plist └── testTableviewUITests.m /AspectOrientedProgramming/AspectOrientedProgramming.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /AspectOrientedProgramming/AspectOrientedProgramming.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AspectOrientedProgramming/AspectOrientedProgramming.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /AspectOrientedProgramming/AspectOrientedProgramming.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AspectOrientedProgramming/AspectOrientedProgramming/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /AspectOrientedProgramming/AspectOrientedProgramming/TrackManager/trackList.csv: -------------------------------------------------------------------------------- 1 | ViewController,click,buttonAction,trackName,trackkeys 2 | ViewController,click,buttonActionNext:,trackName,trackkeys 3 | TableViewController,tableSelect,tableView:didSelectRowAtIndexPath:,, 4 | ViewController,lifeCycle,viewDidLoad,, 5 | TableViewController,lifeCycle,viewDidLoad,, 6 | ViewController,lifeCycle,viewWillLayoutSubviews,, 7 | ViewController,other,buttonActionNext2:,, 8 | ,,,, 9 | -------------------------------------------------------------------------------- /AspectOrientedProgramming/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | platform :ios, '9.1' 3 | use_frameworks! 4 | 5 | 6 | inhibit_all_warnings! 7 | target 'AspectOrientedProgramming' do 8 | pod "Aspects" 9 | end 10 | -------------------------------------------------------------------------------- /AspectOrientedProgramming/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - Aspects (1.4.1) 3 | 4 | DEPENDENCIES: 5 | - Aspects 6 | 7 | SPEC REPOS: 8 | https://github.com/cocoapods/specs.git: 9 | - Aspects 10 | 11 | SPEC CHECKSUMS: 12 | Aspects: 7595ba96a6727a58ebcbfc954497fc5d2fdde546 13 | 14 | PODFILE CHECKSUM: 9ea024c5dec1e74a3ad410cc38458fa6aeeccb12 15 | 16 | COCOAPODS: 1.5.2 17 | -------------------------------------------------------------------------------- /AspectOrientedProgramming/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - Aspects (1.4.1) 3 | 4 | DEPENDENCIES: 5 | - Aspects 6 | 7 | SPEC REPOS: 8 | https://github.com/cocoapods/specs.git: 9 | - Aspects 10 | 11 | SPEC CHECKSUMS: 12 | Aspects: 7595ba96a6727a58ebcbfc954497fc5d2fdde546 13 | 14 | PODFILE CHECKSUM: 9ea024c5dec1e74a3ad410cc38458fa6aeeccb12 15 | 16 | COCOAPODS: 1.5.2 17 | -------------------------------------------------------------------------------- /AspectOrientedProgramming/Pods/Target Support Files/Aspects/Aspects-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Aspects : NSObject 3 | @end 4 | @implementation PodsDummy_Aspects 5 | @end 6 | -------------------------------------------------------------------------------- /AspectOrientedProgramming/Pods/Target Support Files/Aspects/Aspects-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /AspectOrientedProgramming/Pods/Target Support Files/Aspects/Aspects-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | #import "Aspects.h" 14 | 15 | FOUNDATION_EXPORT double AspectsVersionNumber; 16 | FOUNDATION_EXPORT const unsigned char AspectsVersionString[]; 17 | 18 | -------------------------------------------------------------------------------- /AspectOrientedProgramming/Pods/Target Support Files/Aspects/Aspects.modulemap: -------------------------------------------------------------------------------- 1 | framework module Aspects { 2 | umbrella header "Aspects-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /AspectOrientedProgramming/Pods/Target Support Files/Aspects/Aspects.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Aspects 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | PODS_BUILD_DIR = ${BUILD_DIR} 4 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 5 | PODS_ROOT = ${SRCROOT} 6 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/Aspects 7 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 8 | SKIP_INSTALL = YES 9 | -------------------------------------------------------------------------------- /AspectOrientedProgramming/Pods/Target Support Files/Pods-AspectOrientedProgramming/Pods-AspectOrientedProgramming-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_AspectOrientedProgramming : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_AspectOrientedProgramming 5 | @end 6 | -------------------------------------------------------------------------------- /AspectOrientedProgramming/Pods/Target Support Files/Pods-AspectOrientedProgramming/Pods-AspectOrientedProgramming-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_AspectOrientedProgrammingVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_AspectOrientedProgrammingVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /AspectOrientedProgramming/Pods/Target Support Files/Pods-AspectOrientedProgramming/Pods-AspectOrientedProgramming.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_AspectOrientedProgramming { 2 | umbrella header "Pods-AspectOrientedProgramming-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /BugFix/DSYMTools.app/Contents/MacOS/DSYMTools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/BugFix/DSYMTools.app/Contents/MacOS/DSYMTools -------------------------------------------------------------------------------- /BugFix/DSYMTools.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /BugFix/DSYMTools.app/Contents/Resources/AboutWindowController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/BugFix/DSYMTools.app/Contents/Resources/AboutWindowController.nib -------------------------------------------------------------------------------- /BugFix/DSYMTools.app/Contents/Resources/AppIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/BugFix/DSYMTools.app/Contents/Resources/AppIcon.icns -------------------------------------------------------------------------------- /BugFix/DSYMTools.app/Contents/Resources/Assets.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/BugFix/DSYMTools.app/Contents/Resources/Assets.car -------------------------------------------------------------------------------- /BugFix/DSYMTools.app/Contents/Resources/Base.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/BugFix/DSYMTools.app/Contents/Resources/Base.lproj/MainMenu.nib -------------------------------------------------------------------------------- /BugFix/DSYMTools.app/Contents/Resources/MainWindowViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/BugFix/DSYMTools.app/Contents/Resources/MainWindowViewController.nib -------------------------------------------------------------------------------- /BugFix/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ### 博客: [iOS 的 Bug 分析和解决](https://poos.github.io/2018/06/26/BugFix/) 4 | -> Demo:[poos/BlogDemo/BugFix](https://github.com/poos/BlogDemo/tree/master/BugFix) 5 | 6 | 元编程的 Demo;项目中使用的 Demo。 7 | -------------------------------------------------------------------------------- /FlutterAppDemo/.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled and should not be manually edited. 5 | 6 | version: 7 | revision: 8661d8aecd626f7f57ccbcb735553edc05a2e713 8 | channel: stable 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /FlutterAppDemo/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /FlutterAppDemo/android/app/src/main/java/com/example/flutter_app_layout/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.example.flutter_app_layout; 2 | 3 | import android.os.Bundle; 4 | import io.flutter.app.FlutterActivity; 5 | import io.flutter.plugins.GeneratedPluginRegistrant; 6 | 7 | public class MainActivity extends FlutterActivity { 8 | @Override 9 | protected void onCreate(Bundle savedInstanceState) { 10 | super.onCreate(savedInstanceState); 11 | GeneratedPluginRegistrant.registerWith(this); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /FlutterAppDemo/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /FlutterAppDemo/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterAppDemo/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /FlutterAppDemo/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterAppDemo/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /FlutterAppDemo/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterAppDemo/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FlutterAppDemo/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterAppDemo/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FlutterAppDemo/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterAppDemo/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FlutterAppDemo/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | -------------------------------------------------------------------------------- /FlutterAppDemo/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /FlutterAppDemo/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /FlutterAppDemo/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Jun 23 08:50:38 CEST 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.2-all.zip 7 | -------------------------------------------------------------------------------- /FlutterAppDemo/android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | 3 | def flutterProjectRoot = rootProject.projectDir.parentFile.toPath() 4 | 5 | def plugins = new Properties() 6 | def pluginsFile = new File(flutterProjectRoot.toFile(), '.flutter-plugins') 7 | if (pluginsFile.exists()) { 8 | pluginsFile.withReader('UTF-8') { reader -> plugins.load(reader) } 9 | } 10 | 11 | plugins.each { name, path -> 12 | def pluginDirectory = flutterProjectRoot.resolve(path).resolve('android').toFile() 13 | include ":$name" 14 | project(":$name").projectDir = pluginDirectory 15 | } 16 | -------------------------------------------------------------------------------- /FlutterAppDemo/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /FlutterAppDemo/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /FlutterAppDemo/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /FlutterAppDemo/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /FlutterAppDemo/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildSystemType 6 | Original 7 | 8 | 9 | -------------------------------------------------------------------------------- /FlutterAppDemo/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /FlutterAppDemo/ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- 1 | #include "AppDelegate.h" 2 | #include "GeneratedPluginRegistrant.h" 3 | 4 | @implementation AppDelegate 5 | 6 | - (BOOL)application:(UIApplication *)application 7 | didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { 8 | [GeneratedPluginRegistrant registerWithRegistry:self]; 9 | // Override point for customization after application launch. 10 | return [super application:application didFinishLaunchingWithOptions:launchOptions]; 11 | } 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /FlutterAppDemo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterAppDemo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /FlutterAppDemo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterAppDemo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /FlutterAppDemo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterAppDemo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /FlutterAppDemo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterAppDemo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /FlutterAppDemo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterAppDemo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /FlutterAppDemo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterAppDemo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /FlutterAppDemo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterAppDemo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /FlutterAppDemo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterAppDemo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /FlutterAppDemo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterAppDemo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /FlutterAppDemo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterAppDemo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /FlutterAppDemo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterAppDemo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /FlutterAppDemo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterAppDemo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /FlutterAppDemo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterAppDemo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /FlutterAppDemo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterAppDemo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /FlutterAppDemo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterAppDemo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /FlutterAppDemo/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "LaunchImage.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "LaunchImage@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "LaunchImage@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FlutterAppDemo/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterAppDemo/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /FlutterAppDemo/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterAppDemo/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /FlutterAppDemo/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterAppDemo/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /FlutterAppDemo/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- 1 | # Launch Screen Assets 2 | 3 | You can customize the launch screen with your own desired assets by replacing the image files in this directory. 4 | 5 | You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. -------------------------------------------------------------------------------- /FlutterAppDemo/ios/Runner/main.m: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | #import "AppDelegate.h" 4 | 5 | int main(int argc, char* argv[]) { 6 | @autoreleasepool { 7 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /FlutterAppDemo/lib/main.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | 4 | //import 'package:flutter_app_layout/add_example.dart'; 5 | //void main() => runApp(AddExampleApp()); 6 | 7 | import 'package:flutter_app_layout/fetch_data.dart'; 8 | void main() => runApp(FetchDataApp()); 9 | 10 | //import 'package:flutter_app_layout/net_json.dart'; 11 | //void main() => runApp(NetJsonApp()); 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/.vscode/launch.json: -------------------------------------------------------------------------------- 1 | { 2 | // Use IntelliSense to learn about possible attributes. 3 | // Hover to view descriptions of existing attributes. 4 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 5 | "version": "0.2.0", 6 | "configurations": [ 7 | { 8 | "name": "Dart", 9 | "program": "bin/main.dart", 10 | "request": "launch", 11 | "type": "dart" 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled and should not be manually edited. 5 | 6 | version: 7 | revision: 8661d8aecd626f7f57ccbcb735553edc05a2e713 8 | channel: stable 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/android/app/src/main/java/com/example/app/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.example.app; 2 | 3 | import android.os.Bundle; 4 | import io.flutter.app.FlutterActivity; 5 | import io.flutter.plugins.GeneratedPluginRegistrant; 6 | 7 | public class MainActivity extends FlutterActivity { 8 | @Override 9 | protected void onCreate(Bundle savedInstanceState) { 10 | super.onCreate(savedInstanceState); 11 | GeneratedPluginRegistrant.registerWith(this); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Jun 23 08:50:38 CEST 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.2-all.zip 7 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | 3 | def flutterProjectRoot = rootProject.projectDir.parentFile.toPath() 4 | 5 | def plugins = new Properties() 6 | def pluginsFile = new File(flutterProjectRoot.toFile(), '.flutter-plugins') 7 | if (pluginsFile.exists()) { 8 | pluginsFile.withReader('UTF-8') { reader -> plugins.load(reader) } 9 | } 10 | 11 | plugins.each { name, path -> 12 | def pluginDirectory = flutterProjectRoot.resolve(path).resolve('android').toFile() 13 | include ":$name" 14 | project(":$name").projectDir = pluginDirectory 15 | } 16 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/ios/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - Flutter (1.0.0) 3 | - login (0.0.1): 4 | - Flutter 5 | 6 | DEPENDENCIES: 7 | - Flutter (from `.symlinks/flutter/ios`) 8 | - login (from `.symlinks/plugins/login/ios`) 9 | 10 | EXTERNAL SOURCES: 11 | Flutter: 12 | :path: ".symlinks/flutter/ios" 13 | login: 14 | :path: ".symlinks/plugins/login/ios" 15 | 16 | SPEC CHECKSUMS: 17 | Flutter: 9d0fac939486c9aba2809b7982dfdbb47a7b0296 18 | login: 6d3fe17d6c589709a41184dd170eec5aee99f6c5 19 | 20 | PODFILE CHECKSUM: aff02bfeed411c636180d6812254b2daeea14d09 21 | 22 | COCOAPODS: 1.5.2 23 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildSystemType 6 | Original 7 | 8 | 9 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- 1 | #include "AppDelegate.h" 2 | #include "GeneratedPluginRegistrant.h" 3 | 4 | @implementation AppDelegate 5 | 6 | - (BOOL)application:(UIApplication *)application 7 | didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { 8 | [GeneratedPluginRegistrant registerWithRegistry:self]; 9 | // Override point for customization after application launch. 10 | return [super application:application didFinishLaunchingWithOptions:launchOptions]; 11 | } 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "LaunchImage.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "LaunchImage@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "LaunchImage@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- 1 | # Launch Screen Assets 2 | 3 | You can customize the launch screen with your own desired assets by replacing the image files in this directory. 4 | 5 | You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/app/ios/Runner/main.m: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | #import "AppDelegate.h" 4 | 5 | int main(int argc, char* argv[]) { 6 | @autoreleasepool { 7 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .dart_tool/ 3 | 4 | .packages 5 | .pub/ 6 | 7 | build/ 8 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/.idea/libraries/Flutter_for_Android.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/.idea/runConfigurations/example_lib_main_dart.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled and should not be manually edited. 5 | 6 | version: 7 | revision: 8661d8aecd626f7f57ccbcb735553edc05a2e713 8 | channel: stable 9 | 10 | project_type: plugin 11 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/README.md: -------------------------------------------------------------------------------- 1 | # login 2 | 3 | A new flutter plugin project. 4 | 5 | ## Getting Started 6 | 7 | This project is a starting point for a Flutter 8 | [plug-in package](https://flutter.io/developing-packages/), 9 | a specialized package that includes platform-specific implementation code for 10 | Android and/or iOS. 11 | 12 | For help getting started with Flutter, view our 13 | [online documentation](https://flutter.io/docs), which offers tutorials, 14 | samples, guidance on mobile development, and a full API reference. 15 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/android/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'login' 2 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/example/.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled and should not be manually edited. 5 | 6 | version: 7 | revision: 8661d8aecd626f7f57ccbcb735553edc05a2e713 8 | channel: stable 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/example/android/app/src/main/java/com/zhima/login_example/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.zhima.login_example; 2 | 3 | import android.os.Bundle; 4 | import io.flutter.app.FlutterActivity; 5 | import io.flutter.plugins.GeneratedPluginRegistrant; 6 | 7 | public class MainActivity extends FlutterActivity { 8 | @Override 9 | protected void onCreate(Bundle savedInstanceState) { 10 | super.onCreate(savedInstanceState); 11 | GeneratedPluginRegistrant.registerWith(this); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/example/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/login/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/login/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/login/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/login/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/login/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/example/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Jun 23 08:50:38 CEST 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.2-all.zip 7 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/example/android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | 3 | def flutterProjectRoot = rootProject.projectDir.parentFile.toPath() 4 | 5 | def plugins = new Properties() 6 | def pluginsFile = new File(flutterProjectRoot.toFile(), '.flutter-plugins') 7 | if (pluginsFile.exists()) { 8 | pluginsFile.withReader('UTF-8') { reader -> plugins.load(reader) } 9 | } 10 | 11 | plugins.each { name, path -> 12 | def pluginDirectory = flutterProjectRoot.resolve(path).resolve('android').toFile() 13 | include ":$name" 14 | project(":$name").projectDir = pluginDirectory 15 | } 16 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/example/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildSystemType 6 | Original 7 | 8 | 9 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/example/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/login/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/login/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/login/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/login/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/login/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/login/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/login/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/login/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/login/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/login/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/login/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/login/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/login/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/login/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/login/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "LaunchImage.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "LaunchImage@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "LaunchImage@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/login/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/login/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/login/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- 1 | # Launch Screen Assets 2 | 3 | You can customize the launch screen with your own desired assets by replacing the image files in this directory. 4 | 5 | You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/example/ios/Runner/main.m: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | #import "AppDelegate.h" 4 | 5 | int main(int argc, char* argv[]) { 6 | @autoreleasepool { 7 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/ios/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .vagrant/ 3 | .sconsign.dblite 4 | .svn/ 5 | 6 | .DS_Store 7 | *.swp 8 | profile 9 | 10 | DerivedData/ 11 | build/ 12 | GeneratedPluginRegistrant.h 13 | GeneratedPluginRegistrant.m 14 | 15 | .generated/ 16 | 17 | *.pbxuser 18 | *.mode1v3 19 | *.mode2v3 20 | *.perspectivev3 21 | 22 | *.a 23 | *.h 24 | *.m 25 | 26 | !default.pbxuser 27 | !default.mode1v3 28 | !default.mode2v3 29 | !default.perspectivev3 30 | 31 | xcuserdata 32 | 33 | *.moved-aside 34 | 35 | *.pyc 36 | *sync/ 37 | Icon? 38 | .tags* 39 | 40 | /Flutter/Generated.xcconfig 41 | -------------------------------------------------------------------------------- /FlutterProject/flutter+pakage/login/ios/Assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/flutter+pakage/login/ios/Assets/.gitkeep -------------------------------------------------------------------------------- /FlutterProject/ios+flutter/.vscode/launch.json: -------------------------------------------------------------------------------- 1 | { 2 | // Use IntelliSense to learn about possible attributes. 3 | // Hover to view descriptions of existing attributes. 4 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 5 | "version": "0.2.0", 6 | "configurations": [ 7 | { 8 | "name": "Dart", 9 | "program": "bin/main.dart", 10 | "request": "launch", 11 | "type": "dart" 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /FlutterProject/ios+flutter/zhima/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_FlutterPluginRegistrant : NSObject 3 | @end 4 | @implementation PodsDummy_FlutterPluginRegistrant 5 | @end 6 | -------------------------------------------------------------------------------- /FlutterProject/ios+flutter/zhima/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /FlutterProject/ios+flutter/zhima/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | #import "GeneratedPluginRegistrant.h" 14 | 15 | FOUNDATION_EXPORT double FlutterPluginRegistrantVersionNumber; 16 | FOUNDATION_EXPORT const unsigned char FlutterPluginRegistrantVersionString[]; 17 | 18 | -------------------------------------------------------------------------------- /FlutterProject/ios+flutter/zhima/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.modulemap: -------------------------------------------------------------------------------- 1 | framework module FlutterPluginRegistrant { 2 | umbrella header "FlutterPluginRegistrant-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /FlutterProject/ios+flutter/zhima/Pods/Target Support Files/Pods-zhima/Pods-zhima-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | Generated by CocoaPods - https://cocoapods.org 4 | -------------------------------------------------------------------------------- /FlutterProject/ios+flutter/zhima/Pods/Target Support Files/Pods-zhima/Pods-zhima-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_zhima : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_zhima 5 | @end 6 | -------------------------------------------------------------------------------- /FlutterProject/ios+flutter/zhima/Pods/Target Support Files/Pods-zhima/Pods-zhima-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_zhimaVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_zhimaVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /FlutterProject/ios+flutter/zhima/Pods/Target Support Files/Pods-zhima/Pods-zhima.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_zhima { 2 | umbrella header "Pods-zhima-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /FlutterProject/ios+flutter/zhima/Pods/Target Support Files/Pods-zhimaTests/Pods-zhimaTests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | Generated by CocoaPods - https://cocoapods.org 4 | -------------------------------------------------------------------------------- /FlutterProject/ios+flutter/zhima/Pods/Target Support Files/Pods-zhimaTests/Pods-zhimaTests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_zhimaTests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_zhimaTests 5 | @end 6 | -------------------------------------------------------------------------------- /FlutterProject/ios+flutter/zhima/Pods/Target Support Files/Pods-zhimaTests/Pods-zhimaTests-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_zhimaTestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_zhimaTestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /FlutterProject/ios+flutter/zhima/Pods/Target Support Files/Pods-zhimaTests/Pods-zhimaTests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_zhimaTests { 2 | umbrella header "Pods-zhimaTests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /FlutterProject/ios+flutter/zhima/Pods/Target Support Files/Pods-zhimaUITests/Pods-zhimaUITests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | Generated by CocoaPods - https://cocoapods.org 4 | -------------------------------------------------------------------------------- /FlutterProject/ios+flutter/zhima/Pods/Target Support Files/Pods-zhimaUITests/Pods-zhimaUITests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_zhimaUITests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_zhimaUITests 5 | @end 6 | -------------------------------------------------------------------------------- /FlutterProject/ios+flutter/zhima/Pods/Target Support Files/Pods-zhimaUITests/Pods-zhimaUITests-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_zhimaUITestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_zhimaUITestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /FlutterProject/ios+flutter/zhima/Pods/Target Support Files/Pods-zhimaUITests/Pods-zhimaUITests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_zhimaUITests { 2 | umbrella header "Pods-zhimaUITests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /FlutterProject/ios+flutter/zhima/zhima.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /FlutterProject/ios+flutter/zhima/zhima.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /FlutterProject/ios+flutter/zhima/zhima.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /FlutterProject/ios+flutter/zhima/zhima.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /FlutterProject/ios+flutter/zhima/zhima/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /FlutterProject/ios+flutter/zhima/zhima_flutter/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .dart_tool/ 3 | 4 | .packages 5 | .pub/ 6 | 7 | .idea/ 8 | .vagrant/ 9 | .sconsign.dblite 10 | .svn/ 11 | 12 | *.swp 13 | profile 14 | 15 | DerivedData/ 16 | 17 | .generated/ 18 | 19 | *.pbxuser 20 | *.mode1v3 21 | *.mode2v3 22 | *.perspectivev3 23 | 24 | !default.pbxuser 25 | !default.mode1v3 26 | !default.mode2v3 27 | !default.perspectivev3 28 | 29 | xcuserdata 30 | 31 | *.moved-aside 32 | 33 | *.pyc 34 | *sync/ 35 | Icon? 36 | .tags* 37 | 38 | build/ 39 | .android/ 40 | .ios/ 41 | .flutter-plugins 42 | -------------------------------------------------------------------------------- /FlutterProject/ios+flutter/zhima/zhima_flutter/.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled and should not be manually edited. 5 | 6 | version: 7 | revision: 8661d8aecd626f7f57ccbcb735553edc05a2e713 8 | channel: stable 9 | 10 | project_type: module 11 | -------------------------------------------------------------------------------- /FlutterProject/ios+flutter/zhima/zhima_flutter/README.md: -------------------------------------------------------------------------------- 1 | # zhima_flutter 2 | 3 | A new flutter module project. 4 | 5 | ## Getting Started 6 | 7 | For help getting started with Flutter, view our online 8 | [documentation](https://flutter.io/). 9 | -------------------------------------------------------------------------------- /FlutterProject/ios+flutter/zhima_flutter/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .dart_tool/ 3 | 4 | .packages 5 | .pub/ 6 | 7 | .idea/ 8 | .vagrant/ 9 | .sconsign.dblite 10 | .svn/ 11 | 12 | *.swp 13 | profile 14 | 15 | DerivedData/ 16 | 17 | .generated/ 18 | 19 | *.pbxuser 20 | *.mode1v3 21 | *.mode2v3 22 | *.perspectivev3 23 | 24 | !default.pbxuser 25 | !default.mode1v3 26 | !default.mode2v3 27 | !default.perspectivev3 28 | 29 | xcuserdata 30 | 31 | *.moved-aside 32 | 33 | *.pyc 34 | *sync/ 35 | Icon? 36 | .tags* 37 | 38 | build/ 39 | .android/ 40 | .ios/ 41 | .flutter-plugins 42 | -------------------------------------------------------------------------------- /FlutterProject/ios+flutter/zhima_flutter/.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled and should not be manually edited. 5 | 6 | version: 7 | revision: 8661d8aecd626f7f57ccbcb735553edc05a2e713 8 | channel: stable 9 | 10 | project_type: module 11 | -------------------------------------------------------------------------------- /FlutterProject/ios+flutter/zhima_flutter/README.md: -------------------------------------------------------------------------------- 1 | # zhima_flutter 2 | 3 | A new flutter module project. 4 | 5 | ## Getting Started 6 | 7 | For help getting started with Flutter, view our online 8 | [documentation](https://flutter.io/). 9 | -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled and should not be manually edited. 5 | 6 | version: 7 | revision: 8661d8aecd626f7f57ccbcb735553edc05a2e713 8 | channel: stable 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/android/app/src/main/java/com/example/mobx_demo/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.example.mobx_demo; 2 | 3 | import android.os.Bundle; 4 | import io.flutter.app.FlutterActivity; 5 | import io.flutter.plugins.GeneratedPluginRegistrant; 6 | 7 | public class MainActivity extends FlutterActivity { 8 | @Override 9 | protected void onCreate(Bundle savedInstanceState) { 10 | super.onCreate(savedInstanceState); 11 | GeneratedPluginRegistrant.registerWith(this); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/mobx-example/mobx_demo/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/mobx-example/mobx_demo/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/mobx-example/mobx_demo/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/mobx-example/mobx_demo/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/mobx-example/mobx_demo/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Jun 23 08:50:38 CEST 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.2-all.zip 7 | -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | 3 | def flutterProjectRoot = rootProject.projectDir.parentFile.toPath() 4 | 5 | def plugins = new Properties() 6 | def pluginsFile = new File(flutterProjectRoot.toFile(), '.flutter-plugins') 7 | if (pluginsFile.exists()) { 8 | pluginsFile.withReader('UTF-8') { reader -> plugins.load(reader) } 9 | } 10 | 11 | plugins.each { name, path -> 12 | def pluginDirectory = flutterProjectRoot.resolve(path).resolve('android').toFile() 13 | include ":$name" 14 | project(":$name").projectDir = pluginDirectory 15 | } 16 | -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildSystemType 6 | Original 7 | 8 | 9 | -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- 1 | #include "AppDelegate.h" 2 | #include "GeneratedPluginRegistrant.h" 3 | 4 | @implementation AppDelegate 5 | 6 | - (BOOL)application:(UIApplication *)application 7 | didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { 8 | [GeneratedPluginRegistrant registerWithRegistry:self]; 9 | // Override point for customization after application launch. 10 | return [super application:application didFinishLaunchingWithOptions:launchOptions]; 11 | } 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/mobx-example/mobx_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/mobx-example/mobx_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/mobx-example/mobx_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/mobx-example/mobx_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/mobx-example/mobx_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/mobx-example/mobx_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/mobx-example/mobx_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/mobx-example/mobx_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/mobx-example/mobx_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/mobx-example/mobx_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/mobx-example/mobx_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/mobx-example/mobx_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/mobx-example/mobx_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/mobx-example/mobx_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/mobx-example/mobx_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "LaunchImage.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "LaunchImage@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "LaunchImage@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/mobx-example/mobx_demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/mobx-example/mobx_demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/FlutterProject/mobx-example/mobx_demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- 1 | # Launch Screen Assets 2 | 3 | You can customize the launch screen with your own desired assets by replacing the image files in this directory. 4 | 5 | You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/ios/Runner/main.m: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | #import "AppDelegate.h" 4 | 5 | int main(int argc, char* argv[]) { 6 | @autoreleasepool { 7 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /FlutterProject/mobx-example/mobx_demo/lib/counter.dart: -------------------------------------------------------------------------------- 1 | import 'package:mobx/mobx.dart'; 2 | 3 | // Include generated file 4 | part 'counter.g.dart'; 5 | 6 | // This is the class used by rest of your codebase 7 | class Counter = _Counter with _$Counter; 8 | 9 | // The store-class 10 | abstract class _Counter implements Store { 11 | @observable 12 | int value = 0; 13 | 14 | @action 15 | void increment() { 16 | value++; 17 | } 18 | } -------------------------------------------------------------------------------- /Functional/functional.playground/contents.xcplayground: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /GetNetDataDemo/GND1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/GetNetDataDemo/GND1.gif -------------------------------------------------------------------------------- /GetNetDataDemo/GND2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/GetNetDataDemo/GND2.gif -------------------------------------------------------------------------------- /GetNetDataDemo/pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/GetNetDataDemo/pic1.png -------------------------------------------------------------------------------- /GetNetDataDemo/pic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/GetNetDataDemo/pic2.png -------------------------------------------------------------------------------- /LeetCode/test.playground/contents.xcplayground: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /LetVarTest/LetVarTest/SingleView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LetVarTest/LetVarTest/SingleView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /LetVarTest/LetVarTest/SingleView/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /LetVarTest/LetVarTest/SingleView/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/LetVarTest/LetVarTest/SingleView/img.png -------------------------------------------------------------------------------- /LetVarTest/TestMemory/TestMemory.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LetVarTest/TestMemory/TestMemory.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /LetVarTest/TestMemory/TestMemory/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /ProjectConnectTest/charlesproxy401.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/ProjectConnectTest/charlesproxy401.zip -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/ReactorKit/Sources/ReactorKitRuntime/include/ReactorKitRuntime.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | //! Project version number for ReactorKit. 4 | FOUNDATION_EXPORT double ReactorKitVersionNumber; 5 | 6 | //! Project version string for ReactorKit. 7 | FOUNDATION_EXPORT const unsigned char ReactorKitVersionString[]; 8 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/RxAtomic/RxAtomic/RxAtomic.c: -------------------------------------------------------------------------------- 1 | // 2 | // RxAtomic.c 3 | // RxAtomic 4 | // 5 | // Created by Krunoslav Zaher on 10/28/18. 6 | // Copyright © 2018 Krunoslav Zaher. All rights reserved. 7 | // 8 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/RxCocoa/RxCocoa/Runtime/_RX.m: -------------------------------------------------------------------------------- 1 | // 2 | // _RX.m 3 | // RxCocoa 4 | // 5 | // Created by Krunoslav Zaher on 7/12/15. 6 | // Copyright © 2015 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | #import "include/_RX.h" 10 | 11 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/RxCocoa/RxCocoa/RxCocoa.h: -------------------------------------------------------------------------------- 1 | // 2 | // RxCocoa.h 3 | // RxCocoa 4 | // 5 | // Created by Krunoslav Zaher on 2/21/15. 6 | // Copyright © 2015 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "_RX.h" 11 | #import "_RXDelegateProxy.h" 12 | #import "_RXKVOObserver.h" 13 | #import "_RXObjCRuntime.h" 14 | 15 | //! Project version number for RxCocoa. 16 | FOUNDATION_EXPORT double RxCocoaVersionNumber; 17 | 18 | //! Project version string for RxCocoa. 19 | FOUNDATION_EXPORT const unsigned char RxCocoaVersionString[]; -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/RxCocoa/RxCocoa/iOS/Events/ItemEvents.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ItemEvents.swift 3 | // RxCocoa 4 | // 5 | // Created by Krunoslav Zaher on 6/20/15. 6 | // Copyright © 2015 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | #if os(iOS) || os(tvOS) 10 | import UIKit 11 | 12 | public typealias ItemMovedEvent = (sourceIndex: IndexPath, destinationIndex: IndexPath) 13 | public typealias WillDisplayCellEvent = (cell: UITableViewCell, indexPath: IndexPath) 14 | public typealias DidEndDisplayingCellEvent = (cell: UITableViewCell, indexPath: IndexPath) 15 | #endif 16 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/RxCocoa/RxCocoa/macOS/NSImageView+Rx.swift: -------------------------------------------------------------------------------- 1 | // 2 | // NSImageView+Rx.swift 3 | // RxCocoa 4 | // 5 | // Created by Krunoslav Zaher on 5/17/15. 6 | // Copyright © 2015 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | #if os(macOS) 10 | 11 | import RxSwift 12 | import Cocoa 13 | 14 | extension Reactive where Base: NSImageView { 15 | 16 | /// Bindable sink for `image` property. 17 | public var image: Binder { 18 | return Binder(base) { imageView, image in 19 | imageView.image = image 20 | } 21 | } 22 | } 23 | 24 | #endif 25 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/RxSwift/RxSwift/Cancelable.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Cancelable.swift 3 | // RxSwift 4 | // 5 | // Created by Krunoslav Zaher on 3/12/15. 6 | // Copyright © 2015 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | /// Represents disposable resource with state tracking. 10 | public protocol Cancelable : Disposable { 11 | /// Was resource disposed. 12 | var isDisposed: Bool { get } 13 | } 14 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift: -------------------------------------------------------------------------------- 1 | // 2 | // LockOwnerType.swift 3 | // RxSwift 4 | // 5 | // Created by Krunoslav Zaher on 10/25/15. 6 | // Copyright © 2015 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | protocol LockOwnerType : class, Lock { 10 | var _lock: RecursiveLock { get } 11 | } 12 | 13 | extension LockOwnerType { 14 | func lock() { 15 | _lock.lock() 16 | } 17 | 18 | func unlock() { 19 | _lock.unlock() 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SynchronizedDisposeType.swift 3 | // RxSwift 4 | // 5 | // Created by Krunoslav Zaher on 10/25/15. 6 | // Copyright © 2015 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | protocol SynchronizedDisposeType : class, Disposable, Lock { 10 | func _synchronized_dispose() 11 | } 12 | 13 | extension SynchronizedDisposeType { 14 | func synchronizedDispose() { 15 | lock(); defer { unlock() } 16 | _synchronized_dispose() 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SynchronizedOnType.swift 3 | // RxSwift 4 | // 5 | // Created by Krunoslav Zaher on 10/25/15. 6 | // Copyright © 2015 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | protocol SynchronizedOnType : class, ObserverType, Lock { 10 | func _synchronized_on(_ event: Event) 11 | } 12 | 13 | extension SynchronizedOnType { 14 | func synchronizedOn(_ event: Event) { 15 | lock(); defer { unlock() } 16 | _synchronized_on(event) 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SynchronizedUnsubscribeType.swift 3 | // RxSwift 4 | // 5 | // Created by Krunoslav Zaher on 10/25/15. 6 | // Copyright © 2015 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | protocol SynchronizedUnsubscribeType : class { 10 | associatedtype DisposeKey 11 | 12 | func synchronizedUnsubscribe(_ disposeKey: DisposeKey) 13 | } 14 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/RxSwift/RxSwift/Disposable.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Disposable.swift 3 | // RxSwift 4 | // 5 | // Created by Krunoslav Zaher on 2/8/15. 6 | // Copyright © 2015 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | /// Represents a disposable resource. 10 | public protocol Disposable { 11 | /// Dispose resource. 12 | func dispose() 13 | } 14 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/RxSwift/RxSwift/Disposables/Disposables.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Disposables.swift 3 | // RxSwift 4 | // 5 | // Created by Mohsen Ramezanpoor on 01/08/2016. 6 | // Copyright © 2016 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | /// A collection of utility methods for common disposable operations. 10 | public struct Disposables { 11 | private init() {} 12 | } 13 | 14 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift: -------------------------------------------------------------------------------- 1 | // 2 | // DisposeBase.swift 3 | // RxSwift 4 | // 5 | // Created by Krunoslav Zaher on 4/4/15. 6 | // Copyright © 2015 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | /// Base class for all disposables. 10 | public class DisposeBase { 11 | init() { 12 | #if TRACE_RESOURCES 13 | let _ = Resources.incrementTotal() 14 | #endif 15 | } 16 | 17 | deinit { 18 | #if TRACE_RESOURCES 19 | let _ = Resources.decrementTotal() 20 | #endif 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift: -------------------------------------------------------------------------------- 1 | // 2 | // InvocableType.swift 3 | // RxSwift 4 | // 5 | // Created by Krunoslav Zaher on 11/7/15. 6 | // Copyright © 2015 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | protocol InvocableType { 10 | func invoke() 11 | } 12 | 13 | protocol InvocableWithValueType { 14 | associatedtype Value 15 | 16 | func invoke(_ value: Value) 17 | } 18 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ScheduledItemType.swift 3 | // RxSwift 4 | // 5 | // Created by Krunoslav Zaher on 11/7/15. 6 | // Copyright © 2015 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | protocol ScheduledItemType 10 | : Cancelable 11 | , InvocableType { 12 | func invoke() 13 | } 14 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/RxSwift/RxSwift/SwiftSupport/SwiftSupport.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SwiftSupport.swift 3 | // RxSwift 4 | // 5 | // Created by Volodymyr Gorbenko on 3/6/17. 6 | // Copyright © 2017 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | typealias IntMax = Int64 12 | public typealias RxAbstractInteger = FixedWidthInteger 13 | 14 | extension SignedInteger { 15 | func toIntMax() -> IntMax { 16 | return IntMax(self) 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/Target Support Files/Pods-RxSwiftLeaks/Pods-RxSwiftLeaks-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_RxSwiftLeaks : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_RxSwiftLeaks 5 | @end 6 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/Target Support Files/Pods-RxSwiftLeaks/Pods-RxSwiftLeaks-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_RxSwiftLeaksVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_RxSwiftLeaksVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/Target Support Files/Pods-RxSwiftLeaks/Pods-RxSwiftLeaks.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_RxSwiftLeaks { 2 | umbrella header "Pods-RxSwiftLeaks-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/Target Support Files/Pods-RxSwiftLeaksTests/Pods-RxSwiftLeaksTests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | Generated by CocoaPods - https://cocoapods.org 4 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/Target Support Files/Pods-RxSwiftLeaksTests/Pods-RxSwiftLeaksTests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_RxSwiftLeaksTests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_RxSwiftLeaksTests 5 | @end 6 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/Target Support Files/Pods-RxSwiftLeaksTests/Pods-RxSwiftLeaksTests-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_RxSwiftLeaksTestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_RxSwiftLeaksTestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/Target Support Files/Pods-RxSwiftLeaksTests/Pods-RxSwiftLeaksTests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_RxSwiftLeaksTests { 2 | umbrella header "Pods-RxSwiftLeaksTests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/Target Support Files/Pods-RxSwiftLeaksUITests/Pods-RxSwiftLeaksUITests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | Generated by CocoaPods - https://cocoapods.org 4 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/Target Support Files/Pods-RxSwiftLeaksUITests/Pods-RxSwiftLeaksUITests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_RxSwiftLeaksUITests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_RxSwiftLeaksUITests 5 | @end 6 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/Target Support Files/Pods-RxSwiftLeaksUITests/Pods-RxSwiftLeaksUITests-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_RxSwiftLeaksUITestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_RxSwiftLeaksUITestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/Target Support Files/Pods-RxSwiftLeaksUITests/Pods-RxSwiftLeaksUITests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_RxSwiftLeaksUITests { 2 | umbrella header "Pods-RxSwiftLeaksUITests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/Target Support Files/ReactorKit/ReactorKit-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_ReactorKit : NSObject 3 | @end 4 | @implementation PodsDummy_ReactorKit 5 | @end 6 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/Target Support Files/ReactorKit/ReactorKit-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/Target Support Files/ReactorKit/ReactorKit-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | #import "ReactorKitRuntime.h" 14 | 15 | FOUNDATION_EXPORT double ReactorKitVersionNumber; 16 | FOUNDATION_EXPORT const unsigned char ReactorKitVersionString[]; 17 | 18 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/Target Support Files/ReactorKit/ReactorKit.modulemap: -------------------------------------------------------------------------------- 1 | framework module ReactorKit { 2 | umbrella header "ReactorKit-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/Target Support Files/RxAtomic/RxAtomic-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_RxAtomic : NSObject 3 | @end 4 | @implementation PodsDummy_RxAtomic 5 | @end 6 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/Target Support Files/RxAtomic/RxAtomic-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/Target Support Files/RxAtomic/RxAtomic-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | #import "RxAtomic.h" 14 | 15 | FOUNDATION_EXPORT double RxAtomicVersionNumber; 16 | FOUNDATION_EXPORT const unsigned char RxAtomicVersionString[]; 17 | 18 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/Target Support Files/RxAtomic/RxAtomic.modulemap: -------------------------------------------------------------------------------- 1 | framework module RxAtomic { 2 | umbrella header "RxAtomic-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/Target Support Files/RxAtomic/RxAtomic.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/RxAtomic 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | PODS_BUILD_DIR = ${BUILD_DIR} 4 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 5 | PODS_ROOT = ${SRCROOT} 6 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/RxAtomic 7 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 8 | SKIP_INSTALL = YES 9 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/Target Support Files/RxCocoa/RxCocoa-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_RxCocoa : NSObject 3 | @end 4 | @implementation PodsDummy_RxCocoa 5 | @end 6 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/Target Support Files/RxCocoa/RxCocoa-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/Target Support Files/RxCocoa/RxCocoa.modulemap: -------------------------------------------------------------------------------- 1 | framework module RxCocoa { 2 | umbrella header "RxCocoa-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/Target Support Files/RxGesture/RxGesture-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_RxGesture : NSObject 3 | @end 4 | @implementation PodsDummy_RxGesture 5 | @end 6 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/Target Support Files/RxGesture/RxGesture-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/Target Support Files/RxGesture/RxGesture-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double RxGestureVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char RxGestureVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/Target Support Files/RxGesture/RxGesture.modulemap: -------------------------------------------------------------------------------- 1 | framework module RxGesture { 2 | umbrella header "RxGesture-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/Target Support Files/RxSwift/RxSwift-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_RxSwift : NSObject 3 | @end 4 | @implementation PodsDummy_RxSwift 5 | @end 6 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/Target Support Files/RxSwift/RxSwift-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/Target Support Files/RxSwift/RxSwift-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double RxSwiftVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char RxSwiftVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/Pods/Target Support Files/RxSwift/RxSwift.modulemap: -------------------------------------------------------------------------------- 1 | framework module RxSwift { 2 | umbrella header "RxSwift-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/RxSwiftLeaks.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/RxSwiftLeaks.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/RxSwiftLeaks.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/RxSwiftLeaks.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /RxSwift/RxSwiftLeaks/RxSwiftLeaks/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /SourceryTutorial/README.md: -------------------------------------------------------------------------------- 1 | ## SourceryTutorial-starter.zip 是个初始Demo 2 | 3 | ## SingleView 是我的项目应用,ObjectMapper + Sourcery。 4 | 5 | ## 对应的博客地址在这里 **[使用 Sourcery 进行模板编程(meta编程)](https://poos.github.io/2018/12/27/Sourcery/)** 6 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment the next line to define a global platform for your project 2 | # platform :ios, '9.0' 3 | 4 | target 'SingleView' do 5 | # Comment the next line if you're not using Swift and don't want to use dynamic frameworks 6 | use_frameworks! 7 | 8 | # Pods for SingleView 9 | 10 | pod 'ObjectMapper' 11 | pod 'Sourcery' 12 | 13 | target 'SingleViewTests' do 14 | inherit! :search_paths 15 | # Pods for testing 16 | end 17 | 18 | target 'SingleViewUITests' do 19 | inherit! :search_paths 20 | # Pods for testing 21 | end 22 | 23 | end 24 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - ObjectMapper (3.4.2) 3 | - Sourcery (0.15.0) 4 | 5 | DEPENDENCIES: 6 | - ObjectMapper 7 | - Sourcery 8 | 9 | SPEC REPOS: 10 | https://github.com/cocoapods/specs.git: 11 | - ObjectMapper 12 | - Sourcery 13 | 14 | SPEC CHECKSUMS: 15 | ObjectMapper: 0d4402610f4e468903ae64629eec4784531e5c51 16 | Sourcery: 5895672cae353cdbfa95f3f4aaeb75a664d76f6a 17 | 18 | PODFILE CHECKSUM: 29d0417fafb6fb502fad081dabd53db282ca168d 19 | 20 | COCOAPODS: 1.5.2 21 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - ObjectMapper (3.4.2) 3 | - Sourcery (0.15.0) 4 | 5 | DEPENDENCIES: 6 | - ObjectMapper 7 | - Sourcery 8 | 9 | SPEC REPOS: 10 | https://github.com/cocoapods/specs.git: 11 | - ObjectMapper 12 | - Sourcery 13 | 14 | SPEC CHECKSUMS: 15 | ObjectMapper: 0d4402610f4e468903ae64629eec4784531e5c51 16 | Sourcery: 5895672cae353cdbfa95f3f4aaeb75a664d76f6a 17 | 18 | PODFILE CHECKSUM: 29d0417fafb6fb502fad081dabd53db282ca168d 19 | 20 | COCOAPODS: 1.5.2 21 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/Resources/daemon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/Resources/daemon.gif -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/Resources/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/Resources/icon-128.png -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/Sourcery.build/Release/Sourcery.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 22 201814:56:36/Users ilya.puchkadevSourcery -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/Sourcery.docset/Contents/Resources/Documents/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/Sourcery.docset/Contents/Resources/Documents/img/carat.png -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/Sourcery.docset/Contents/Resources/Documents/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/Sourcery.docset/Contents/Resources/Documents/img/dash.png -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/Sourcery.docset/Contents/Resources/Documents/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/Sourcery.docset/Contents/Resources/Documents/img/gh.png -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/Sourcery.docset/Contents/Resources/Documents/undocumented.json: -------------------------------------------------------------------------------- 1 | { 2 | "warnings": [ 3 | 4 | ], 5 | "source_directory": "/Users/ilya.puchka/dev/Sourcery" 6 | } -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/Sourcery.docset/Contents/Resources/docSet.dsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/Sourcery.docset/Contents/Resources/docSet.dsidx -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/Templates/AutoCases.stencil: -------------------------------------------------------------------------------- 1 | {% for enum in types.implementing.AutoCases|enum %} 2 | {{ enum.accessLevel }} extension {{ enum.name }} { 3 | static let count: Int = {{ enum.cases.count }} 4 | {% if not enum.hasAssociatedValues %} 5 | static let allCases: [{{ enum.name }}] = [ 6 | {% for case in enum.cases %} .{{ case.name }}{% if not forloop.last %},{% endif %} 7 | {% endfor %}] 8 | {% endif %} 9 | } 10 | {% endfor %} 11 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/AEXML.framework/AEXML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/AEXML.framework/AEXML -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/AEXML.framework/Versions/A/AEXML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/AEXML.framework/Versions/A/AEXML -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/AEXML.framework/Versions/Current/AEXML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/AEXML.framework/Versions/Current/AEXML -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/Commander.framework/Commander: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/Commander.framework/Commander -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/Commander.framework/Versions/A/Commander: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/Commander.framework/Versions/A/Commander -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/Commander.framework/Versions/Current/Commander: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/Commander.framework/Versions/Current/Commander -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/PathKit.framework/PathKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/PathKit.framework/PathKit -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/PathKit.framework/Versions/A/PathKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/PathKit.framework/Versions/A/PathKit -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/PathKit.framework/Versions/Current/PathKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/PathKit.framework/Versions/Current/PathKit -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SWXMLHash.framework/SWXMLHash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SWXMLHash.framework/SWXMLHash -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SWXMLHash.framework/Versions/A/SWXMLHash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SWXMLHash.framework/Versions/A/SWXMLHash -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SWXMLHash.framework/Versions/Current/SWXMLHash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SWXMLHash.framework/Versions/Current/SWXMLHash -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceKittenFramework.framework/SourceKittenFramework: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceKittenFramework.framework/SourceKittenFramework -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceKittenFramework.framework/Versions/A/SourceKittenFramework: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceKittenFramework.framework/Versions/A/SourceKittenFramework -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceKittenFramework.framework/Versions/Current/SourceKittenFramework: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceKittenFramework.framework/Versions/Current/SourceKittenFramework -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryJS.framework/Modules/SourceryJS.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryJS.framework/Modules/SourceryJS.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryJS.framework/Modules/SourceryJS.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryJS.framework/Modules/SourceryJS.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryJS.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module SourceryJS { 2 | umbrella header "SourceryJS.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | 8 | module SourceryJS.Swift { 9 | header "SourceryJS-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryJS.framework/SourceryJS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryJS.framework/SourceryJS -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryJS.framework/Versions/A/Modules/SourceryJS.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryJS.framework/Versions/A/Modules/SourceryJS.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryJS.framework/Versions/A/Modules/SourceryJS.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryJS.framework/Versions/A/Modules/SourceryJS.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryJS.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module SourceryJS { 2 | umbrella header "SourceryJS.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | 8 | module SourceryJS.Swift { 9 | header "SourceryJS-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryJS.framework/Versions/A/SourceryJS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryJS.framework/Versions/A/SourceryJS -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryJS.framework/Versions/Current/Modules/SourceryJS.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryJS.framework/Versions/Current/Modules/SourceryJS.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryJS.framework/Versions/Current/Modules/SourceryJS.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryJS.framework/Versions/Current/Modules/SourceryJS.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryJS.framework/Versions/Current/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module SourceryJS { 2 | umbrella header "SourceryJS.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | 8 | module SourceryJS.Swift { 9 | header "SourceryJS-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryJS.framework/Versions/Current/SourceryJS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryJS.framework/Versions/Current/SourceryJS -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryRuntime.framework/Headers/SourceryRuntime.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | //! Project version number for SourceryRuntime. 4 | FOUNDATION_EXPORT double SourceryRuntimeVersionNumber; 5 | 6 | //! Project version string for SourceryRuntime. 7 | FOUNDATION_EXPORT const unsigned char SourceryRuntimeVersionString[]; 8 | 9 | // In this header, you should import all the public headers of your framework using statements like #import 10 | 11 | 12 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryRuntime.framework/Modules/SourceryRuntime.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryRuntime.framework/Modules/SourceryRuntime.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryRuntime.framework/Modules/SourceryRuntime.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryRuntime.framework/Modules/SourceryRuntime.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryRuntime.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module SourceryRuntime { 2 | umbrella header "SourceryRuntime.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | 8 | module SourceryRuntime.Swift { 9 | header "SourceryRuntime-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryRuntime.framework/SourceryRuntime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryRuntime.framework/SourceryRuntime -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryRuntime.framework/Versions/A/Headers/SourceryRuntime.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | //! Project version number for SourceryRuntime. 4 | FOUNDATION_EXPORT double SourceryRuntimeVersionNumber; 5 | 6 | //! Project version string for SourceryRuntime. 7 | FOUNDATION_EXPORT const unsigned char SourceryRuntimeVersionString[]; 8 | 9 | // In this header, you should import all the public headers of your framework using statements like #import 10 | 11 | 12 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryRuntime.framework/Versions/A/Modules/SourceryRuntime.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryRuntime.framework/Versions/A/Modules/SourceryRuntime.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryRuntime.framework/Versions/A/Modules/SourceryRuntime.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryRuntime.framework/Versions/A/Modules/SourceryRuntime.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryRuntime.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module SourceryRuntime { 2 | umbrella header "SourceryRuntime.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | 8 | module SourceryRuntime.Swift { 9 | header "SourceryRuntime-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryRuntime.framework/Versions/A/SourceryRuntime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryRuntime.framework/Versions/A/SourceryRuntime -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryRuntime.framework/Versions/Current/Headers/SourceryRuntime.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | //! Project version number for SourceryRuntime. 4 | FOUNDATION_EXPORT double SourceryRuntimeVersionNumber; 5 | 6 | //! Project version string for SourceryRuntime. 7 | FOUNDATION_EXPORT const unsigned char SourceryRuntimeVersionString[]; 8 | 9 | // In this header, you should import all the public headers of your framework using statements like #import 10 | 11 | 12 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryRuntime.framework/Versions/Current/Modules/SourceryRuntime.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryRuntime.framework/Versions/Current/Modules/SourceryRuntime.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryRuntime.framework/Versions/Current/Modules/SourceryRuntime.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryRuntime.framework/Versions/Current/Modules/SourceryRuntime.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryRuntime.framework/Versions/Current/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module SourceryRuntime { 2 | umbrella header "SourceryRuntime.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | 8 | module SourceryRuntime.Swift { 9 | header "SourceryRuntime-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryRuntime.framework/Versions/Current/SourceryRuntime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourceryRuntime.framework/Versions/Current/SourceryRuntime -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Modules/SourcerySwift.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Modules/SourcerySwift.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Modules/SourcerySwift.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Modules/SourcerySwift.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module SourcerySwift { 2 | umbrella header "SourcerySwift.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | 8 | module SourcerySwift.Swift { 9 | header "SourcerySwift-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/SourcerySwift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/SourcerySwift -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/A/Frameworks/SourceryRuntime.framework/Headers/SourceryRuntime.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | //! Project version number for SourceryRuntime. 4 | FOUNDATION_EXPORT double SourceryRuntimeVersionNumber; 5 | 6 | //! Project version string for SourceryRuntime. 7 | FOUNDATION_EXPORT const unsigned char SourceryRuntimeVersionString[]; 8 | 9 | // In this header, you should import all the public headers of your framework using statements like #import 10 | 11 | 12 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/A/Frameworks/SourceryRuntime.framework/Modules/SourceryRuntime.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/A/Frameworks/SourceryRuntime.framework/Modules/SourceryRuntime.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/A/Frameworks/SourceryRuntime.framework/Modules/SourceryRuntime.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/A/Frameworks/SourceryRuntime.framework/Modules/SourceryRuntime.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/A/Frameworks/SourceryRuntime.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module SourceryRuntime { 2 | umbrella header "SourceryRuntime.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | 8 | module SourceryRuntime.Swift { 9 | header "SourceryRuntime-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/A/Frameworks/SourceryRuntime.framework/SourceryRuntime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/A/Frameworks/SourceryRuntime.framework/SourceryRuntime -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/A/Frameworks/SourceryRuntime.framework/Versions/A/Modules/SourceryRuntime.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/A/Frameworks/SourceryRuntime.framework/Versions/A/Modules/SourceryRuntime.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/A/Frameworks/SourceryRuntime.framework/Versions/A/Modules/SourceryRuntime.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/A/Frameworks/SourceryRuntime.framework/Versions/A/Modules/SourceryRuntime.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/A/Frameworks/SourceryRuntime.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module SourceryRuntime { 2 | umbrella header "SourceryRuntime.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | 8 | module SourceryRuntime.Swift { 9 | header "SourceryRuntime-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/A/Frameworks/SourceryRuntime.framework/Versions/A/SourceryRuntime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/A/Frameworks/SourceryRuntime.framework/Versions/A/SourceryRuntime -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/A/Frameworks/SourceryRuntime.framework/Versions/Current/Modules/SourceryRuntime.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/A/Frameworks/SourceryRuntime.framework/Versions/Current/Modules/SourceryRuntime.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/A/Frameworks/SourceryRuntime.framework/Versions/Current/Modules/SourceryRuntime.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/A/Frameworks/SourceryRuntime.framework/Versions/Current/Modules/SourceryRuntime.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/A/Frameworks/SourceryRuntime.framework/Versions/Current/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module SourceryRuntime { 2 | umbrella header "SourceryRuntime.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | 8 | module SourceryRuntime.Swift { 9 | header "SourceryRuntime-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/A/Frameworks/SourceryRuntime.framework/Versions/Current/SourceryRuntime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/A/Frameworks/SourceryRuntime.framework/Versions/Current/SourceryRuntime -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/A/Modules/SourcerySwift.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/A/Modules/SourcerySwift.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/A/Modules/SourcerySwift.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/A/Modules/SourcerySwift.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module SourcerySwift { 2 | umbrella header "SourcerySwift.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | 8 | module SourcerySwift.Swift { 9 | header "SourcerySwift-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/A/SourcerySwift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/A/SourcerySwift -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/Current/Frameworks/SourceryRuntime.framework/Headers/SourceryRuntime.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | //! Project version number for SourceryRuntime. 4 | FOUNDATION_EXPORT double SourceryRuntimeVersionNumber; 5 | 6 | //! Project version string for SourceryRuntime. 7 | FOUNDATION_EXPORT const unsigned char SourceryRuntimeVersionString[]; 8 | 9 | // In this header, you should import all the public headers of your framework using statements like #import 10 | 11 | 12 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/Current/Frameworks/SourceryRuntime.framework/Modules/SourceryRuntime.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/Current/Frameworks/SourceryRuntime.framework/Modules/SourceryRuntime.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/Current/Frameworks/SourceryRuntime.framework/Modules/SourceryRuntime.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/Current/Frameworks/SourceryRuntime.framework/Modules/SourceryRuntime.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/Current/Frameworks/SourceryRuntime.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module SourceryRuntime { 2 | umbrella header "SourceryRuntime.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | 8 | module SourceryRuntime.Swift { 9 | header "SourceryRuntime-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/Current/Frameworks/SourceryRuntime.framework/SourceryRuntime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/Current/Frameworks/SourceryRuntime.framework/SourceryRuntime -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/Current/Frameworks/SourceryRuntime.framework/Versions/A/Modules/SourceryRuntime.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/Current/Frameworks/SourceryRuntime.framework/Versions/A/Modules/SourceryRuntime.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/Current/Frameworks/SourceryRuntime.framework/Versions/A/Modules/SourceryRuntime.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/Current/Frameworks/SourceryRuntime.framework/Versions/A/Modules/SourceryRuntime.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/Current/Frameworks/SourceryRuntime.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module SourceryRuntime { 2 | umbrella header "SourceryRuntime.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | 8 | module SourceryRuntime.Swift { 9 | header "SourceryRuntime-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/Current/Frameworks/SourceryRuntime.framework/Versions/A/SourceryRuntime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/Current/Frameworks/SourceryRuntime.framework/Versions/A/SourceryRuntime -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/Current/Frameworks/SourceryRuntime.framework/Versions/Current/Modules/SourceryRuntime.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/Current/Frameworks/SourceryRuntime.framework/Versions/Current/Modules/SourceryRuntime.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/Current/Frameworks/SourceryRuntime.framework/Versions/Current/Modules/SourceryRuntime.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/Current/Frameworks/SourceryRuntime.framework/Versions/Current/Modules/SourceryRuntime.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/Current/Frameworks/SourceryRuntime.framework/Versions/Current/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module SourceryRuntime { 2 | umbrella header "SourceryRuntime.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | 8 | module SourceryRuntime.Swift { 9 | header "SourceryRuntime-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/Current/Frameworks/SourceryRuntime.framework/Versions/Current/SourceryRuntime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/Current/Frameworks/SourceryRuntime.framework/Versions/Current/SourceryRuntime -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/Current/Modules/SourcerySwift.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/Current/Modules/SourcerySwift.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/Current/Modules/SourcerySwift.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/Current/Modules/SourcerySwift.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/Current/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module SourcerySwift { 2 | umbrella header "SourcerySwift.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | 8 | module SourcerySwift.Swift { 9 | header "SourcerySwift-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/Current/SourcerySwift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SourcerySwift.framework/Versions/Current/SourcerySwift -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/Stencil.framework/Stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/Stencil.framework/Stencil -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/Stencil.framework/Versions/A/Stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/Stencil.framework/Versions/A/Stencil -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/Stencil.framework/Versions/Current/Stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/Stencil.framework/Versions/Current/Stencil -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/StencilSwiftKit.framework/StencilSwiftKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/StencilSwiftKit.framework/StencilSwiftKit -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/StencilSwiftKit.framework/Versions/A/StencilSwiftKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/StencilSwiftKit.framework/Versions/A/StencilSwiftKit -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/StencilSwiftKit.framework/Versions/Current/StencilSwiftKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/StencilSwiftKit.framework/Versions/Current/StencilSwiftKit -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SwiftTryCatch.framework/SwiftTryCatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SwiftTryCatch.framework/SwiftTryCatch -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SwiftTryCatch.framework/Versions/A/SwiftTryCatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SwiftTryCatch.framework/Versions/A/SwiftTryCatch -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SwiftTryCatch.framework/Versions/Current/SwiftTryCatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/SwiftTryCatch.framework/Versions/Current/SwiftTryCatch -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/Yams.framework/Versions/A/Yams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/Yams.framework/Versions/A/Yams -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/Yams.framework/Versions/Current/Yams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/Yams.framework/Versions/Current/Yams -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/Yams.framework/Yams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/Yams.framework/Yams -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/libswiftAppKit.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/libswiftAppKit.dylib -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/libswiftCore.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/libswiftCore.dylib -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/libswiftCoreData.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/libswiftCoreData.dylib -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/libswiftCoreFoundation.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/libswiftCoreFoundation.dylib -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/libswiftCoreGraphics.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/libswiftCoreGraphics.dylib -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/libswiftCoreImage.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/libswiftCoreImage.dylib -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/libswiftDarwin.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/libswiftDarwin.dylib -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/libswiftDispatch.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/libswiftDispatch.dylib -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/libswiftFoundation.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/libswiftFoundation.dylib -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/libswiftIOKit.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/libswiftIOKit.dylib -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/libswiftMetal.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/libswiftMetal.dylib -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/libswiftObjectiveC.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/libswiftObjectiveC.dylib -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/libswiftQuartzCore.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/libswiftQuartzCore.dylib -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/libswiftXPC.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/libswiftXPC.dylib -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/libswiftos.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/libswiftos.dylib -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/xcproj.framework/Versions/A/xcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/xcproj.framework/Versions/A/xcproj -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/xcproj.framework/Versions/Current/xcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/xcproj.framework/Versions/Current/xcproj -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/xcproj.framework/xcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Frameworks/xcproj.framework/xcproj -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/MacOS/Sourcery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/MacOS/Sourcery -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Resources/libswiftRemoteMirror.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SingleView/Pods/Sourcery/bin/Sourcery.app/Contents/Resources/libswiftRemoteMirror.dylib -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Target Support Files/ObjectMapper/ObjectMapper-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_ObjectMapper : NSObject 3 | @end 4 | @implementation PodsDummy_ObjectMapper 5 | @end 6 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Target Support Files/ObjectMapper/ObjectMapper-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Target Support Files/ObjectMapper/ObjectMapper-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double ObjectMapperVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char ObjectMapperVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Target Support Files/ObjectMapper/ObjectMapper.modulemap: -------------------------------------------------------------------------------- 1 | framework module ObjectMapper { 2 | umbrella header "ObjectMapper-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Target Support Files/ObjectMapper/ObjectMapper.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/ObjectMapper 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/ObjectMapper 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Target Support Files/Pods-SingleView/Pods-SingleView-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_SingleView : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_SingleView 5 | @end 6 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Target Support Files/Pods-SingleView/Pods-SingleView-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_SingleViewVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_SingleViewVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Target Support Files/Pods-SingleView/Pods-SingleView.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_SingleView { 2 | umbrella header "Pods-SingleView-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Target Support Files/Pods-SingleViewTests/Pods-SingleViewTests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | Generated by CocoaPods - https://cocoapods.org 4 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Target Support Files/Pods-SingleViewTests/Pods-SingleViewTests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_SingleViewTests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_SingleViewTests 5 | @end 6 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Target Support Files/Pods-SingleViewTests/Pods-SingleViewTests-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_SingleViewTestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_SingleViewTestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Target Support Files/Pods-SingleViewTests/Pods-SingleViewTests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_SingleViewTests { 2 | umbrella header "Pods-SingleViewTests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Target Support Files/Pods-SingleViewUITests/Pods-SingleViewUITests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | Generated by CocoaPods - https://cocoapods.org 4 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Target Support Files/Pods-SingleViewUITests/Pods-SingleViewUITests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_SingleViewUITests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_SingleViewUITests 5 | @end 6 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Target Support Files/Pods-SingleViewUITests/Pods-SingleViewUITests-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_SingleViewUITestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_SingleViewUITestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/Pods/Target Support Files/Pods-SingleViewUITests/Pods-SingleViewUITests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_SingleViewUITests { 2 | umbrella header "Pods-SingleViewUITests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/SingleView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/SingleView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/SingleView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/SingleView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/SingleView/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/SingleView/Model.generated.swift: -------------------------------------------------------------------------------- 1 | // Generated using Sourcery 0.15.0 — https://github.com/krzysztofzablocki/Sourcery 2 | // DO NOT EDIT 3 | 4 | import ObjectMapper 5 | 6 | // MARK: Person Mappable 7 | extension Person: Mappable { 8 | init?(map: Map) { 9 | return nil 10 | } 11 | mutating func mapping(map: Map) { 12 | firstName <- map["first_name"] 13 | lastName <- map["last_name"] 14 | birthDate <- map["birth_data"] 15 | friend <- map["friend.0.value"] 16 | lalala <- map["lalala.value"] 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /SourceryTutorial/SingleView/SingleView/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // SingleView 4 | // 5 | // Created by biesx on 2018/12/26. 6 | // Copyright © 2018 biesx. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class ViewController: UIViewController { 12 | 13 | override func viewDidLoad() { 14 | super.viewDidLoad() 15 | // Do any additional setup after loading the view, typically from a nib. 16 | } 17 | 18 | 19 | } 20 | 21 | -------------------------------------------------------------------------------- /SourceryTutorial/SourceryTutorial-starter.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/SourceryTutorial/SourceryTutorial-starter.zip -------------------------------------------------------------------------------- /TestLifeCycle/test.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /TestLifeCycle/test.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /TestLifeCycle/test/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /TestSwift/RM.txt: -------------------------------------------------------------------------------- 1 | http://www.cocoachina.com/swift/20151211/14617.html 2 | 3 | 4 | 1. 5 | 6 | xcrun swiftc -Onone inputFile.swift -o resultFileName -------------------------------------------------------------------------------- /TestSwift/result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poos/BlogDemo/d79bfcef596513962d7f04882f765aabe4d5909b/TestSwift/result -------------------------------------------------------------------------------- /mapFliterReduce/mapFliterReduce.playground/contents.xcplayground: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /testCTMdeiator/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | platform :ios, '9.1' 3 | use_frameworks! 4 | 5 | 6 | inhibit_all_warnings! 7 | target 'testCTMdeiator' do 8 | pod "CTMediator" 9 | end -------------------------------------------------------------------------------- /testCTMdeiator/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - CTMediator (18) 3 | 4 | DEPENDENCIES: 5 | - CTMediator 6 | 7 | SPEC REPOS: 8 | https://github.com/cocoapods/specs.git: 9 | - CTMediator 10 | 11 | SPEC CHECKSUMS: 12 | CTMediator: 420e9d90f9f1fd740caf2238ed7ed64dc621c5b7 13 | 14 | PODFILE CHECKSUM: 216d1657d3be34a43af047ac26af1fc90edcc516 15 | 16 | COCOAPODS: 1.5.2 17 | -------------------------------------------------------------------------------- /testCTMdeiator/Pods/CTMediator/FILE_LICENSE: -------------------------------------------------------------------------------- 1 | MIT 2 | -------------------------------------------------------------------------------- /testCTMdeiator/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - CTMediator (18) 3 | 4 | DEPENDENCIES: 5 | - CTMediator 6 | 7 | SPEC REPOS: 8 | https://github.com/cocoapods/specs.git: 9 | - CTMediator 10 | 11 | SPEC CHECKSUMS: 12 | CTMediator: 420e9d90f9f1fd740caf2238ed7ed64dc621c5b7 13 | 14 | PODFILE CHECKSUM: 216d1657d3be34a43af047ac26af1fc90edcc516 15 | 16 | COCOAPODS: 1.5.2 17 | -------------------------------------------------------------------------------- /testCTMdeiator/Pods/Target Support Files/CTMediator/CTMediator-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_CTMediator : NSObject 3 | @end 4 | @implementation PodsDummy_CTMediator 5 | @end 6 | -------------------------------------------------------------------------------- /testCTMdeiator/Pods/Target Support Files/CTMediator/CTMediator-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /testCTMdeiator/Pods/Target Support Files/CTMediator/CTMediator-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | #import "CTMediator.h" 14 | 15 | FOUNDATION_EXPORT double CTMediatorVersionNumber; 16 | FOUNDATION_EXPORT const unsigned char CTMediatorVersionString[]; 17 | 18 | -------------------------------------------------------------------------------- /testCTMdeiator/Pods/Target Support Files/CTMediator/CTMediator.modulemap: -------------------------------------------------------------------------------- 1 | framework module CTMediator { 2 | umbrella header "CTMediator-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /testCTMdeiator/Pods/Target Support Files/CTMediator/CTMediator.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/CTMediator 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_LDFLAGS = -framework "UIKit" 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/CTMediator 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | -------------------------------------------------------------------------------- /testCTMdeiator/Pods/Target Support Files/Pods-testCTMdeiator/Pods-testCTMdeiator-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## CTMediator 5 | 6 | MIT 7 | 8 | Generated by CocoaPods - https://cocoapods.org 9 | -------------------------------------------------------------------------------- /testCTMdeiator/Pods/Target Support Files/Pods-testCTMdeiator/Pods-testCTMdeiator-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_testCTMdeiator : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_testCTMdeiator 5 | @end 6 | -------------------------------------------------------------------------------- /testCTMdeiator/Pods/Target Support Files/Pods-testCTMdeiator/Pods-testCTMdeiator-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_testCTMdeiatorVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_testCTMdeiatorVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /testCTMdeiator/Pods/Target Support Files/Pods-testCTMdeiator/Pods-testCTMdeiator.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_testCTMdeiator { 2 | umbrella header "Pods-testCTMdeiator-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /testCTMdeiator/testCTMdeiator.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /testCTMdeiator/testCTMdeiator.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /testCTMdeiator/testCTMdeiator.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /testCTMdeiator/testCTMdeiator.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /testCTMdeiator/testCTMdeiator/MainProject/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /testTableview/README.md: -------------------------------------------------------------------------------- 1 | # testTableview cell 删除 2 | 3 | 4 | - data 数据源应当同步删除 5 | 6 | - 如果使用 section header ,那么删除最后一个 cell 后需要 reload,删除最后一行 cell 会报错 7 | -------------------------------------------------------------------------------- /testTableview/testTableview.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /testTableview/testTableview.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /testTableview/testTableview/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // testTableview 4 | // 5 | // Created by biesx on 2019/7/4. 6 | // Copyright © 2019 biesx. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /testTableview/testTableview/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /testTableview/testTableview/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // testTableview 4 | // 5 | // Created by biesx on 2019/7/4. 6 | // Copyright © 2019 biesx. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | 13 | @end 14 | 15 | -------------------------------------------------------------------------------- /testTableview/testTableview/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // testTableview 4 | // 5 | // Created by biesx on 2019/7/4. 6 | // Copyright © 2019 biesx. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "AppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) { 13 | @autoreleasepool { 14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 15 | } 16 | } 17 | --------------------------------------------------------------------------------