Skip to content

Commit

Permalink
fix: fix controls visibility on the main screen in portrait mode
Browse files Browse the repository at this point in the history
* After update of ConstraingLibrary to version 1.1.0 the controls on the main screen seem to disappear. In reality they had 0 height. Adding some height to at least one of the controls results in correct rendering.

Closes #13
  • Loading branch information
fralik committed May 26, 2018
1 parent 1d653e2 commit 01befe0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions app/src/main/res/layout-port/activity_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintVertical_weight="0.15"
app:layout_constraintHeight_percent="0.05"
android:layout_marginLeft="10dp"
android:layout_marginStart="10dp"
android:layout_marginRight="10dp"
Expand Down

0 comments on commit 01befe0

Please sign in to comment.