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

31 lines
952 B
Java
Raw Normal View History

2021-06-27 20:44:35 +00:00
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 */
2021-07-13 20:23:20 +00:00
public final MaterialButton f1865c;
2021-06-27 20:44:35 +00:00
public WidgetScreenShareNfxSheetBinding(@NonNull NestedScrollView nestedScrollView, @NonNull TextView textView, @NonNull MaterialButton materialButton) {
this.a = nestedScrollView;
this.b = textView;
2021-07-13 20:23:20 +00:00
this.f1865c = materialButton;
2021-06-27 20:44:35 +00:00
}
@Override // androidx.viewbinding.ViewBinding
@NonNull
public View getRoot() {
return this.a;
}
}