Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🔜 Hiding profile row in preparation for 1.10.0 release #359

Merged
merged 1 commit into from
Oct 23, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions app/src/main/res/layout/settings_layout.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
<LinearLayout
android:id="@+id/new_settings_layout"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/ksr_grey_100"
android:orientation="vertical"
xmlns:tools="http://schemas.android.com/tools">
android:orientation="vertical">

<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
Expand All @@ -29,11 +29,12 @@

<LinearLayout
android:id="@+id/edit_profile_row"
android:background="@color/white"
android:foreground="@drawable/click_indicator_light"
android:layout_width="match_parent"
android:layout_height="@dimen/grid_12"
android:orientation="horizontal">
android:background="@color/white"
android:foreground="@drawable/click_indicator_light"
android:orientation="horizontal"
android:visibility="gone">

<ImageView
android:id="@+id/profile_picture_image_view"
Expand All @@ -42,7 +43,7 @@
android:layout_marginStart="@dimen/activity_horizontal_margin"
android:layout_marginTop="@dimen/activity_horizontal_margin"
android:src="@color/ksr_green_500"
tools:ignore="ContentDescription"/>
tools:ignore="ContentDescription" />

<LinearLayout
android:layout_width="0dp"
Expand Down