Description
Create ImageView for User or Group like Messenger app
MessengerBubbles alternatives and similar libraries
Based on the "UI" category.
Alternatively, view MessengerBubbles alternatives based on common mentions on social networks and blogs.
-
Lottie
An iOS library to natively render After Effects vector animations -
SVProgressHUD
A clean and lightweight progress HUD for your iOS and tvOS app. -
IGListKit
A data-driven UICollectionView framework for building fast and flexible lists. -
DZNEmptyDataSet
A drop-in UITableView/UICollectionView superclass category for showing empty datasets whenever the view has no content to display -
AsyncDisplayKit
Smooth asynchronous user interfaces for iOS apps. -
IQKeyboardManager
Codeless drop-in universal library allows to prevent issues of keyboard sliding up and cover UITextField/UITextView. Neither need to write any code nor any setup required and much more. -
iCarousel
A simple, highly customisable, data-driven 3D carousel for iOS and Mac OS -
FSCalendar
A fully customizable iOS calendar library, compatible with Objective-C and Swift -
SkeletonView
☠️ An elegant way to show users that something is happening and also prepare them to which contents they are awaiting -
TTTAttributedLabel
A drop-in replacement for UILabel that supports attributes, data detectors, links, and more -
folding-cell
:octocat: 📃 FoldingCell is an expanding content cell with animation made by @Ramotion -
Material
A UI/UX framework for creating beautiful applications. -
animated-tab-bar
:octocat: RAMAnimatedTabBarController is a Swift UI module library for adding animation to iOS tabbar items and icons. iOS library made by @Ramotion -
NVActivityIndicatorView
A collection of awesome loading animations -
MGSwipeTableCell
An easy to use UITableViewCell subclass that allows to display swippable buttons with a variety of transitions. -
LTMorphingLabel
[EXPERIMENTAL] Graceful morphing effects for UILabel written in Swift. -
JTAppleCalendar
The Unofficial Apple iOS Swift Calendar View. Swift calendar Library. iOS calendar Control. 100% Customizable -
FlatUIKit
A collection of awesome flat UI components for iOS. -
SWTableViewCell
An easy-to-use UITableViewCell subclass that implements a swippable content view which exposes utility buttons (similar to iOS 7 Mail Application) -
JVFloatLabeledTextField
UITextField subclass with floating labels - inspired by Matt D. Smith's design: http://dribbble.com/shots/1254439--GIF-Mobile-Form-Interaction?list=users -
ViewAnimator
ViewAnimator brings your UI to life with just one line -
XLForm
XLForm is the most flexible and powerful iOS library to create dynamic table-view forms. Fully compatible with Swift & Obj-C. -
FSPagerView
FSPagerView is an elegant Screen Slide Library. It is extremely helpful for making Banner View、Product Show、Welcome/Guide Pages、Screen/ViewController Sliders. -
SwiftMessages
A very flexible message bar for UIKit and SwiftUI. -
TPKeyboardAvoiding
A drop-in universal solution for moving text fields out of the way of the keyboard in iOS -
SVPullToRefresh
Give pull-to-refresh & infinite scrolling to any UIScrollView with 1 line of code. -
Alerts & Pickers
Advanced usage of UIAlertController and pickers based on it: Telegram, Contacts, Location, PhotoLibrary, Country, Phone Code, Currency, Date... -
PageMenu
A paging menu controller built from other view controllers placed inside a scroll view (like Spotify, Windows Phone, Instagram) -
SwipeCellKit
Swipeable UITableViewCell/UICollectionViewCell based on the stock Mail.app, implemented in Swift. -
SwiftEntryKit
SwiftEntryKit is a presentation library for iOS. It can be used to easily display overlays within your iOS apps. -
SCLAlertView-Swift
Beautiful animated Alert View. Written in Swift -
TextFieldEffects
Custom UITextFields effects inspired by Codrops, built using Swift -
Koloda
KolodaView is a class designed to simplify the implementation of Tinder like cards on iOS. -
AMScrollingNavbar
Scrollable UINavigationBar that follows the scrolling of a UIScrollView -
SideMenu
Simple side/slide menu control for iOS, no code necessary! Lots of customization. Add it to your project in 5 minutes or less. -
ViewDeck
An implementation of the sliding menu found in various iOS apps. -
Macaw
Powerful and easy-to-use vector graphics Swift library with SVG support -
Material Components
[In maintenance mode] Modular and customizable Material Design UI components for iOS -
SWRevealViewController
A UIViewController subclass for presenting side view controllers inspired on the FaceBook and Wunderlist apps, done right ! -
TSMessages
💌 Easy to use and customizable messages/notifications for iOS à la Tweetbot -
expanding-collection
:octocat: ExpandingCollection is an animated material design UI card peek/pop controller. iOS library made by @Ramotion
Appwrite - The open-source backend cloud platform
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of MessengerBubbles or a related project?
README
MessengerBubbles
[Banner](Screenshots/Banner.png?)
[App Image](Screenshots/gif.gif?)
Example
To run the example project, clone the repo, and run pod install
from the Example directory first.
Requirements
Installation
CocoaPods
MessengerBubbles is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod 'MessengerBubbles'
Manually
If you prefer not to use any of the aforementioned dependency managers, you can integrate CodableCloudKit into your project manually. Simply drag the Sources
Folder into your Xcode project.
Usage
From Storyboard
MessengerBubbles is a subview of UIView
[Storyboard](Screenshots/Storyboard.png?)
Just create a UIView
and replace the Custom Class with MessengerBubbles
You can choose if you want to enable the online bubble indicator, if the user or group is online or not, change the online buble color and border color.
Programmatically
You have many ways to create a MessengerBubbles
public init(size: CGFloat,
borderColor: UIColor = .white,
onlineBubbleColor: UIColor = PrivateConstants.onlineBubbleColor,
enableOnlineBubble: Bool = true,
isOnline: Bool = false)
public init(images: [UIImage?]?,
size: CGFloat,
borderColor: UIColor = .white,
onlineBubbleColor: UIColor = PrivateConstants.onlineBubbleColor,
enableOnlineBubble: Bool = true,
isOnline: Bool = false)
public init(urls: [String?]?,
size: CGFloat,
borderColor: UIColor = .white,
onlineBubbleColor: UIColor = PrivateConstants.onlineBubbleColor,
enableOnlineBubble: Bool = true,
isOnline: Bool = false)
Size is always requiered. All others properties have a default value.
MessengerBubbles(size: 60) // With size only
MessengerBubbles(size: 60, borderColor: .blue,
onlineBubbleColor: .yellow,
enabledOnlineBubble: false,
isOnline: false) // With custom values
MessengerBubbles(images: images,
size: 60) // With an array of UIImage at initialization
MessengerBubbles(urls: urls,
size: 60) // With an array of String at initialization
You can set images after MessengerBubbles
has been created.
If your array contains 1 element, it will create a single bubble.
By the way, if it contains 2 elements or more, it will create 2 bubbles even if it contains more than 2 elements.
public func setImages(with images: [UIImage?]?) // Set images with an array of UIImage
public func setImages(with urls: [String?]?) // Set images with an array of String
let bubble = MessengerBubbles(size: 60)
bubble.setImages(with: images)
//or
bubble.setImages(with: urls)
isOnline
and onlineBubbleColor
can be changed after initialization
bubble.isOnline = true // or false
bubble.onlineBubbleColor = .black // or whatever you want
Author
Laurent Grondin, [email protected]
Contributing
Contributions are very welcome 🙌
License
MessengerBubbles is available under the MIT license. See the LICENSE file for more info.
*Note that all licence references and agreements mentioned in the MessengerBubbles README section above
are relevant to that project's source code only.