/// /// HybridBlurViewSpec.kt /// This file was generated by nitrogen. DO NOT MODIFY THIS FILE. /// https://github.com/mrousavy/nitro /// Copyright © Marc Rousavy @ Margelo /// package com.margelo.nitro.qmblurview import androidx.annotation.Keep import com.facebook.jni.HybridData import com.facebook.proguard.annotations.DoNotStrip import com.margelo.nitro.views.HybridView /** * A Kotlin class representing the BlurView HybridObject. * Implement this abstract class to create Kotlin-based instances of BlurView. */ @DoNotStrip @Keep @Suppress( "KotlinJniMissingFunction", "unused", "RedundantSuppression", "RedundantUnitReturnType", "SimpleRedundantLet", "LocalVariableName", "PropertyName", "PrivatePropertyName", "FunctionName" ) abstract class HybridBlurViewSpec: HybridView() { @DoNotStrip private var mHybridData: HybridData = initHybrid() init { super.updateNative(mHybridData) } override fun updateNative(hybridData: HybridData) { mHybridData = hybridData super.updateNative(hybridData) } // Default implementation of `HybridObject.toString()` override fun toString(): String { return "[HybridObject BlurView]" } // Properties @get:DoNotStrip @get:Keep @set:DoNotStrip @set:Keep abstract var blurRadius: Double? @get:DoNotStrip @get:Keep @set:DoNotStrip @set:Keep abstract var cornerRadius: Double? @get:DoNotStrip @get:Keep @set:DoNotStrip @set:Keep abstract var blurRounds: Double? @get:DoNotStrip @get:Keep @set:DoNotStrip @set:Keep abstract var overlayColor: String? @get:DoNotStrip @get:Keep @set:DoNotStrip @set:Keep abstract var downsampleFactor: Double? // Methods private external fun initHybrid(): HybridData companion object { protected const val TAG = "HybridBlurViewSpec" } }