discord-jadx/app/src/main/res/layout/widget_guild_create.xml
Juby210 02b39b5eaf
Enable replacing const values in jadx
Tracking changes should be much easier now.
2021-08-10 00:50:52 +02:00

17 lines
2.6 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" style="@style/UiKit_ViewGroup_Page">
<com.google.android.material.appbar.AppBarLayout style="@style/AppTheme_AppBarLayout_Flat">
<androidx.appcompat.widget.Toolbar app:navigationContentDescription="@string/close" app:navigationIcon="?attr/ic_action_bar_close" style="@style/AppTheme_Toolbar_Transparent"/>
</com.google.android.material.appbar.AppBarLayout>
<androidx.core.widget.NestedScrollView android:paddingBottom="8dp" android:paddingStart="16dp" android:paddingEnd="16dp" style="@style/UiKit_ViewGroup_NestedScrollView_AppBarScrollingViewBehavior">
<LinearLayout android:layout_height="match_parent" style="@style/UiKit_ViewGroup_LinearLayout">
<com.discord.views.ScreenTitleView android:id="@+id/guild_create_screen_title" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginBottom="24dp" app:stv_subtitle="@string/create_server_description_mobile_refresh" app:stv_title="@string/create_server_title_mobile_refresh"/>
<include android:layout_gravity="center" android:id="@+id/guild_create_icon_uploader" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginBottom="24dp" layout="@layout/layout_icon_uploader"/>
<com.google.android.material.textfield.TextInputLayout android:id="@+id/guild_create_name" android:layout_marginBottom="8dp" android:hint="@string/form_label_server_name" app:endIconMode="2" style="@style/UiKit_TextInputLayout">
<com.google.android.material.textfield.TextInputEditText style="@style/UiKit_TextInputLayout_EditText"/>
</com.google.android.material.textfield.TextInputLayout>
<com.discord.utilities.view.text.LinkifiedTextView android:textColor="?attr/colorHeaderSecondary" android:id="@+id/guild_create_guidelines" android:layout_marginBottom="16dp" style="@style/UiKit_TextView"/>
<com.discord.views.LoadingButton android:id="@+id/guild_create_button" android:layout_width="match_parent" android:layout_height="wrap_content" app:lb_padding_bottom="16dp" app:lb_padding_top="16dp" app:lb_progress_color="@color/white" app:lb_text="@string/nuf_create_server_button" app:lb_text_color="@drawable/button_text_color_primary_100" app:lb_text_size="@dimen/uikit_textsize_large"/>
</LinearLayout>
</androidx.core.widget.NestedScrollView>
</androidx.coordinatorlayout.widget.CoordinatorLayout>