├── .gitignore ├── ChatBubbleAdvanced.xcodeproj └── project.pbxproj ├── ChatBubbleAdvanced ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── alpaca.imageset │ │ ├── Contents.json │ │ └── alpaca.jpg ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist └── ViewController.swift └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dima-nikolaev/ChatBubbleAdvanced/HEAD/.gitignore -------------------------------------------------------------------------------- /ChatBubbleAdvanced.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dima-nikolaev/ChatBubbleAdvanced/HEAD/ChatBubbleAdvanced.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ChatBubbleAdvanced/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dima-nikolaev/ChatBubbleAdvanced/HEAD/ChatBubbleAdvanced/AppDelegate.swift -------------------------------------------------------------------------------- /ChatBubbleAdvanced/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dima-nikolaev/ChatBubbleAdvanced/HEAD/ChatBubbleAdvanced/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ChatBubbleAdvanced/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dima-nikolaev/ChatBubbleAdvanced/HEAD/ChatBubbleAdvanced/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ChatBubbleAdvanced/Assets.xcassets/alpaca.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dima-nikolaev/ChatBubbleAdvanced/HEAD/ChatBubbleAdvanced/Assets.xcassets/alpaca.imageset/Contents.json -------------------------------------------------------------------------------- /ChatBubbleAdvanced/Assets.xcassets/alpaca.imageset/alpaca.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dima-nikolaev/ChatBubbleAdvanced/HEAD/ChatBubbleAdvanced/Assets.xcassets/alpaca.imageset/alpaca.jpg -------------------------------------------------------------------------------- /ChatBubbleAdvanced/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dima-nikolaev/ChatBubbleAdvanced/HEAD/ChatBubbleAdvanced/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ChatBubbleAdvanced/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dima-nikolaev/ChatBubbleAdvanced/HEAD/ChatBubbleAdvanced/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ChatBubbleAdvanced/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dima-nikolaev/ChatBubbleAdvanced/HEAD/ChatBubbleAdvanced/Info.plist -------------------------------------------------------------------------------- /ChatBubbleAdvanced/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dima-nikolaev/ChatBubbleAdvanced/HEAD/ChatBubbleAdvanced/ViewController.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dima-nikolaev/ChatBubbleAdvanced/HEAD/README.md --------------------------------------------------------------------------------