gitextract_6f9a0zjb/ ├── .gitignore ├── .swift-version ├── LICENSE ├── README.md ├── Spring/ │ ├── AsyncButton.swift │ ├── AsyncImageView.swift │ ├── AutoTextView.swift │ ├── BlurView.swift │ ├── DesignableButton.swift │ ├── DesignableImageView.swift │ ├── DesignableLabel.swift │ ├── DesignableTabBarController.swift │ ├── DesignableTextField.swift │ ├── DesignableTextView.swift │ ├── DesignableView.swift │ ├── ImageLoader.swift │ ├── Info.plist │ ├── KeyboardLayoutConstraint.swift │ ├── LoadingView.swift │ ├── LoadingView.xib │ ├── Misc.swift │ ├── SoundPlayer.swift │ ├── Spring.h │ ├── Spring.swift │ ├── SpringAnimation.swift │ ├── SpringButton.swift │ ├── SpringImageView.swift │ ├── SpringLabel.swift │ ├── SpringTextField.swift │ ├── SpringTextView.swift │ ├── SpringView.swift │ ├── TransitionManager.swift │ ├── TransitionZoom.swift │ └── UnwindSegue.swift ├── Spring.podspec ├── SpringApp/ │ ├── AppDelegate.swift │ ├── Base.lproj/ │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── CodeViewController.swift │ ├── Images.xcassets/ │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── icon-shape.imageset/ │ │ │ └── Contents.json │ │ └── loading.imageset/ │ │ └── Contents.json │ ├── Info.plist │ ├── OptionsViewController.swift │ └── SpringViewController.swift ├── SpringApp.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ └── contents.xcworkspacedata │ └── xcshareddata/ │ └── xcschemes/ │ ├── Spring.xcscheme │ └── SpringApp.xcscheme ├── SpringAppTests/ │ ├── Info.plist │ └── SpringAppTests.swift └── SpringTests/ ├── Info.plist └── SpringTests.swift