Description
Discover the world 🌎 around you..!!!
The Radar Kit allows you to locate places and trips nearby you, or it will help you to search out the people around you with a few lines of code..!!!
RadarKit alternatives and similar libraries
Based on the "UI" category.
Alternatively, view RadarKit alternatives based on common mentions on social networks and blogs.
-
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 -
JTAppleCalendar
The Unofficial Apple iOS Swift Calendar View. Swift calendar Library. iOS calendar Control. 100% Customizable -
FSPagerView
FSPagerView is an elegant Screen Slide Library. It is extremely helpful for making Banner View、Product Show、Welcome/Guide Pages、Screen/ViewController Sliders. -
Pagemenu
A paging menu controller built from other view controllers placed inside a scroll view (like Spotify, Windows Phone, Instagram) -
Alerts Pickers
Advanced usage of UIAlertController and pickers based on it: Telegram, Contacts, Location, PhotoLibrary, Country, Phone Code, Currency, Date... -
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. -
Scrollable-GraphView
An adaptive scrollable graph view for iOS to visualise simple discrete datasets. Written in Swift. -
SideMenu
Simple side/slide menu control for iOS, no code necessary! Lots of customization. Add it to your project in 5 minutes or less. -
ESTabBarController
:octocat: ESTabBarController is a Swift model for customize UI, badge and adding animation to tabbar items. Support lottie! -
Material Components for iOS
[In maintenance mode] Modular and customizable Material Design UI components for iOS -
NotificationBanner
The easiest way to display highly customizable in app notification banners in iOS -
ActiveLabel
UILabel drop-in replacement supporting Hashtags (#), Mentions (@) and URLs (http://) written in Swift -
SlideMenuControllerSwift
iOS Slide Menu View based on Google+, iQON, Feedly, Ameba iOS app. It is written in pure swift. -
PopupDialog
A simple, customizable popup dialog for iOS written in Swift. Replaces UIAlertController alert style. -
TLYShyNavBar
DISCONTINUED. Unlike all those arrogant UINavigationBar, this one is shy and humble! Easily create auto-scrolling navigation bars! -
StarWars.iOS
This component implements transition animation to crumble view-controller into tiny pieces. -
KMNavigationBarTransition
A drop-in universal library helps you to manage the navigation bar styles and makes transition animations smooth between different navigation bar styles while pushing or popping a view controller for all orientations. And you don't need to write any line of code for it, it all happens automatically. -
Whisper
:mega: Whisper is a component that will make the task of display messages and in-app notifications simple. It has three different views inside -
PaperOnboarding
:octocat: PaperOnboarding is a material design UI slider. Swift UI library by @Ramotion -
CircleMenu
:octocat: ⭕️ CircleMenu is a simple, elegant UI menu with a circular layout and material design animations. Swift UI library made by @Ramotion -
RazzleDazzle
A simple keyframe-based animation framework for iOS, written in Swift. Perfect for scrolling app intros.
SaaSHub - Software Alternatives and Reviews
* 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 RadarKit or a related project?
README
RadarKit
Preview
Discover the world 🌎 around you..!!!
The Radar Kit allowing you to locate places, trip neary by you Or it will help you to search out the people around you with the few lines of code..!!!
The Pod has been used in a project where we discover the list of languages that user want to learn which they can see like below
Get more for UI/UX from dribbble
Requirements
- iOS 12.0+
- Xcode 12.0+
Installation
To install it, simply add the following line to your Podfile:
pod 'RadarKit', git: 'https://github.com/parthgohel2810/RadarKit.git', branch: 'main'
Usage
- Change the class of a view from UIView to CustomRadarView
swift @IBOutlet private weak var radarView: CustomRadarView!
- Programmatically:
let radarView = CustomRadarView(frame: myFrame)
Customization
private func configureRadarView() {
radarView.delegate = self
radarView.dataSource = self
radarView.diskRadius = 0.0
radarView.dotColor = .ringStroke.filterNil
radarView.circleOnColor = .ringOnColor.filterNil
radarView.circleOffColor = .ringStroke.filterNil
radarView.numberOfCircles = 4
radarView.isRotateRingAnimation = true
radarView.paddingBetweenCircle = 36
radarView.paddingBetweenItems = 20
radarView.enableRippleEffect = false
}
diskRadius
The radius of the central disk in the view, if you would like to hide it, you can set the radius to 0
diskColor
The color of the central disk in the view, the default color is ripplePink color
minimumCircleRadius
This property make distance between the first circle and the central disk
numberOfCircles
The number of circles to draw around the disk, the default value is 3
paddingBetweenCircle
The padding between circles, circles could be drawn outside the frame
circleOffColor
The color of the off status of the circle, used for animation
circleOnColor
The color of the on status of the circle, used for animation
animationDuration
The duration of the animation, the default value is 0.9
You can start/ stop the animation at any time by calling startAnimation()
& stopAnimation()
isRotateRingAnimation
Allows circle to rotate, used for animation
dotColor
The color of the two dots which place at two end of circle,
paddingBetweenItems
The padding between items, the default value is 10
remove Ripple effect behind the item
For removal of Ripple effect use enableRippleEffect
property
Add items
If you would like to add one item, use the method add(item:using:)
If you would like to add multiple items, it's recommended to use the method add(items:using:)
for more detail and information please refer Example
project
remove an item
For removal of an item, use the method remove(item:)
Customise an item
If you would like to customize items, use the protocol RadarViewDataSource
and implement:
radarView?.dataSource = self
...
func radarView(radarView: RadarView, viewFor item: Item, preferredSize: CGSize) -> UIView {
let myCustomItemView = UIView(frame: CGRect(x: 0, y: 0, width: preferredSize.width, height: preferredSize.height))
return myCustomItemView
}
CallBack
Action on items can be detected using the protocol RadarViewDelegate
and implement:
radarView?.delegate = self
...
func radarView(radarView: RadarView, didSelect item: Item) {
print(item.uniqueKey)
}
📱 Check out other lists of our Mobile UI libraries
💻 Check out other lists of Web libraries
📝 Get FREE Industry WhitePapers →
Check out our Work
📄 License
MI-RadarKit is MIT-licensed.
If you use our open-source libraries in your project, please make sure to credit us and Give a star to www.mindinventorycom
*Note that all licence references and agreements mentioned in the RadarKit README section above
are relevant to that project's source code only.