Skip to content

Instantly share code, notes, and snippets.

View Raghvendra7's full-sized avatar
💜
Game Over

Raghvendra Srivastava Raghvendra7

💜
Game Over
View GitHub Profile
@Raghvendra7
Raghvendra7 / FloatingButton.swift
Created September 19, 2016 12:47
FloatingButton( MaterialDesign) for ios
import Foundation
import UIKit
import QuartzCore
@IBDesignable
public class FloatingButton: UIButton {
//PROPERTIES RIPPLE EFFECT - USAGE PROGRAMMATICALY
public var ripplePercent: Float = 2.0 {
didSet {
@Raghvendra7
Raghvendra7 / ScannerViewController.swift
Last active August 18, 2021 21:46
Scanning the barcode
import AVFoundation
import UIKit
class ScannerViewController: UIViewController, AVCaptureMetadataOutputObjectsDelegate {
var captureSession: AVCaptureSession!
var previewLayer: AVCaptureVideoPreviewLayer!
override func viewDidLoad() {
super.viewDidLoad()