discord-jadx/app/src/main/res/layout/widget_guild_invite_page.xml

16 lines
2.5 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:background="@drawable/drawable_default_invite_splash" style="@style/UiKit_ViewGroup_Page">
<com.google.android.material.appbar.AppBarLayout android:id="@+id/toolbar" app:layout_constraintBottom_toTopOf="@+id/scroll_view" app:layout_constraintEnd_toEndOf="0" app:layout_constraintStart_toStartOf="0" app:layout_constraintTop_toTopOf="0" style="@style/AppTheme_AppBarLayout_Flat_Transparent">
<androidx.appcompat.widget.Toolbar style="@style/AppTheme_Toolbar_Transparent"/>
</com.google.android.material.appbar.AppBarLayout>
<androidx.core.widget.NestedScrollView android:id="@+id/scroll_view" android:layout_width="0dp" android:layout_height="0dp" app:layout_constraintBottom_toTopOf="@+id/guild_invite_actions" app:layout_constraintEnd_toEndOf="0" app:layout_constraintStart_toStartOf="0" app:layout_constraintTop_toBottomOf="@+id/toolbar" style="@style/UiKit_ViewGroup_ScrollView">
<androidx.appcompat.widget.LinearLayoutCompat android:gravity="center" android:layout_gravity="center" android:layout_width="match_parent" android:layout_height="wrap_content" style="@style/UiKit_ViewGroup_LinearLayout">
<com.discord.widgets.guilds.invite.WidgetInviteInfo android:gravity="center" android:layout_gravity="center" android:id="@+id/guild_invite_info" android:layout_marginLeft="24dp" android:layout_marginRight="24dp" style="@style/UiKit_ViewGroup_LinearLayout"/>
<com.discord.widgets.guildscheduledevent.GuildScheduledEventItemView android:id="@+id/guild_invite_event_info" android:visibility="gone" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="16dp"/>
</androidx.appcompat.widget.LinearLayoutCompat>
</androidx.core.widget.NestedScrollView>
<LinearLayout android:id="@+id/guild_invite_actions" app:layout_constraintBottom_toBottomOf="0" app:layout_constraintEnd_toEndOf="0" app:layout_constraintStart_toStartOf="0" app:layout_constraintTop_toBottomOf="@+id/scroll_view" style="@style/UiKit_Copy_Anchor">
<com.google.android.material.button.MaterialButton android:id="@+id/guild_invite_cancel" android:visibility="visible" android:text="@string/cancel" style="@style/UiKit_Material_Button_Secondary"/>
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>