discord-jadx/app/src/main/java/com/discord/databinding/WidgetScreenShareNfxSheetBi...

31 lines
952 B
Java

package com.discord.databinding;
import android.view.View;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.core.widget.NestedScrollView;
import androidx.viewbinding.ViewBinding;
import com.google.android.material.button.MaterialButton;
public final class WidgetScreenShareNfxSheetBinding implements ViewBinding {
@NonNull
public final NestedScrollView a;
@NonNull
public final TextView b;
@NonNull
/* renamed from: c reason: collision with root package name */
public final MaterialButton f1931c;
public WidgetScreenShareNfxSheetBinding(@NonNull NestedScrollView nestedScrollView, @NonNull TextView textView, @NonNull MaterialButton materialButton) {
this.a = nestedScrollView;
this.b = textView;
this.f1931c = materialButton;
}
@Override // androidx.viewbinding.ViewBinding
@NonNull
public View getRoot() {
return this.a;
}
}