All Projects → ugurethemaydin → Swiftconfettiview

ugurethemaydin / Swiftconfettiview

Licence: mit
Swift Confetti View ! Who doesn't like confetti? 🎉🎉

Programming Languages

swift
15916 projects

Labels

Projects that are alternatives of or similar to Swiftconfettiview

Zzhorizontalprogressbar
水平进度条,支持渐变色和二级进度
Stars: ✭ 153 (-20.73%)
Mutual labels:  view
Diamond
Diamond is a full-stack web-framework written in The D Programming Language using vibe.d
Stars: ✭ 173 (-10.36%)
Mutual labels:  view
Spannabletextview
SpannableTextView is a custom TextView which lets you customize the styling of slice of your text or statment via Spannables, but without the hassle of having to deal directly with Spannable themselves.
Stars: ✭ 177 (-8.29%)
Mutual labels:  view
Cardslider
Card Slider is an android component allows you to implement carousel effect with infinite indicators and more features
Stars: ✭ 160 (-17.1%)
Mutual labels:  view
Meiwidgetview
🔥一款汇总了郭霖,鸿洋,以及自己平时收集的自定义控件集合库(小红书)
Stars: ✭ 2,060 (+967.36%)
Mutual labels:  view
Transitioner
A library for dynamic view-to-view transitions
Stars: ✭ 2,049 (+961.66%)
Mutual labels:  view
Filltextview
一个填空题控件
Stars: ✭ 149 (-22.8%)
Mutual labels:  view
Stepviewandroid
An Android library (Step View) written in kotlin to display steps (without any max-min limits) along with the status/description using a single view. It also supports some really cool features.
Stars: ✭ 191 (-1.04%)
Mutual labels:  view
Materialsearchbar
Material Design Search Bar for Android
Stars: ✭ 2,008 (+940.41%)
Mutual labels:  view
View Effects
Apply custom effects on view backgrounds
Stars: ✭ 176 (-8.81%)
Mutual labels:  view
Expansionpanel
Android - Expansion panels contain creation flows and allow lightweight editing of an element.
Stars: ✭ 1,984 (+927.98%)
Mutual labels:  view
Toucheffects
Android View点击特效TouchEffects,几行代码为所有控件添加点击效果
Stars: ✭ 167 (-13.47%)
Mutual labels:  view
Youtubevideosample
YoutubeVideoSample
Stars: ✭ 176 (-8.81%)
Mutual labels:  view
Airpurgeview
AirPurgeView
Stars: ✭ 156 (-19.17%)
Mutual labels:  view
Snappyrecyclerview
An extension to RecyclerView which will snap to child Views to the specified anchor, START, CENTER or END.
Stars: ✭ 178 (-7.77%)
Mutual labels:  view
Show Case Card View
Show case card view
Stars: ✭ 151 (-21.76%)
Mutual labels:  view
Movingnumbersview
Moving numbers effect in SwiftUI
Stars: ✭ 175 (-9.33%)
Mutual labels:  view
React Native Popover View
A well-tested, adaptable, lightweight <Popover> component for react-native
Stars: ✭ 191 (-1.04%)
Mutual labels:  view
Yii2 Minify View
Yii2 View component with minification css & js
Stars: ✭ 186 (-3.63%)
Mutual labels:  view
Guideview
A guideView implements using the DialogFragment
Stars: ✭ 176 (-8.81%)
Mutual labels:  view

Swift Confetti View Tweet

Swift Confetti View ! Who doesn't like confetti?

language CI Status Version License Platform

confetti

It's raining confetti! SwiftConfettiView is the easiest way to add fun, multi-colored confetti to your application and make users feel rewarded. Written in Swift, SwiftConfettiView is a subclass of UIView and is highly customizable. From various types and colors of confetti to different levels of intensity, you can make the confetti as fancy as you want.

To run the example project, clone the repo, and run pod install from the Example directory first.

Requirements

iOS 9.3 or later and Swift 4

Installation

SwiftConfettiView is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod 'SwiftConfettiView'

And then run:

$ pod install

Manual Installation

To manually install SwiftConfettiView, simply add SwiftConfettiView.swift to your project.

Usage

Creating a SwiftConfettiView is the same as creating a UIView:

let confettiView = SwiftConfettiView(frame: self.view.bounds)

Don't forget to add the subview!

self.view.addSubview(confettiView)

Types

Pick one of the preconfigured types of confetti with the .type property, or create your own by providing a custom image. This property defaults to the .Confetti type.

.Confetti

confetti

confettiView.type = .Confetti
.Triangle

triangle

confettiView.type = .Triangle
.Star

star

confettiView.type = .Star
.Diamond

diamond

confettiView.type = .Diamond
.Image

image

confettiView.type = .Image(UIImage(named: "smiley"))

Colors

Set the colors of the confetti with the .colors property. This property has a default value of multiple colors.

confettiView.colors = [UIColor.redColor(), UIColor.greenColor(), UIColor.blueColor()]

Intensity

The intensity refers to how many particles are generated and how quickly they fall. Set the intensity of the confetti with the .intensity property by passing in a value between 0 and 1. The default intensity is 0.5.

confettiView.intensity = 0.75

Starting

To start the confetti, use

confettiView.startConfetti()

Stopping

To stop the confetti, use

confettiView.stopConfetti()

Status

To check if the confetti is active and currently being displayed, use

confettiView.isActive()

Returns true if it is being displayed, and false if it is not.

Who is using the repo?

  • Direct Message for Whatsapp - chat without adding a contact!
    Type number, press the direct message button and start whatsapp chat without saving new contact .Keep it fast,secret and clean.

  • Qwote - Capture, Format & Share quotes
    Qwote is a quick way to share text snippets or quotes as beautifully formatted images.

  • Soapbox - Chat with and Make New Friends
    *Soapbox is a different take Good conversations don’t need good lighting. *

if you want your app to be written in this section, please email us.

OTHERs Repo

CheckDevice

How to detect iOS device models and screen size?

CheckDevice is detected the current  device model and screen sizes.

CheckDevice

Related

This project enhance or use SAConfettiView: Unfortunately, SAConfettiView has not been updated for a long time and doesn't work in swift4+. So I am created and developing this independent library and I use it in my projects.

Author

Uğur Ethem AYDIN, [email protected]

License

Swift Confetti View is available under the MIT license. See the LICENSE file for more info.

Copyright (c) 2019 Uğur Ethem AYDIN

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].