Added padding to MainActivity

This commit is contained in:
luca0N! 2021-03-14 15:08:41 -03:00
parent cff137eded
commit cf4ffba3d9
Signed by: luca0N
GPG Key ID: 2E7B4655CF16D7D6
2 changed files with 58 additions and 53 deletions

View File

@ -38,8 +38,8 @@ Contact us at <joguitos+pluck@luca0n.com>.
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginEnd="8dp"
android:layout_margin="@dimen/margin_default"
android:padding="@dimen/padding_default"
android:orientation="vertical"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toTopOf="parent">

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<dimen name="margin_default">8dp</dimen>
<dimen name="padding_default">12dp</dimen>
</resources>