diff options
author | Ognjen Cirkovic <ciraboxkg@gmail.com> | 2022-11-03 21:54:29 +0100 |
---|---|---|
committer | Ognjen Cirkovic <ciraboxkg@gmail.com> | 2022-11-03 21:54:29 +0100 |
commit | 3ba0c0557213a9444211b58a6a65ff4a2af09ea3 (patch) | |
tree | 773a05d139601aa7fdd35e429ee947da2ee1cff2 | |
parent | 759414e3138e02a540cbb74a9675d6dec6362004 (diff) |
fixed typo.
-rw-r--r-- | Backend/Api/Api/Models/Location.cs | 2 | ||||
-rw-r--r-- | Client/BrzoDoLokacije/app/src/main/res/layout/post_preview.xml | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/Backend/Api/Api/Models/Location.cs b/Backend/Api/Api/Models/Location.cs index 5e723e4..8cc4377 100644 --- a/Backend/Api/Api/Models/Location.cs +++ b/Backend/Api/Api/Models/Location.cs @@ -11,7 +11,7 @@ namespace Api.Models public String name { get; set; } public String city { get; set; } public String country { get; set; } - public String adress { get; set; } + public String address { get; set; } public double latitude { get; set; } public double longitude { get; set; } public LocationType type { get; set; } diff --git a/Client/BrzoDoLokacije/app/src/main/res/layout/post_preview.xml b/Client/BrzoDoLokacije/app/src/main/res/layout/post_preview.xml index abbd549..48a3289 100644 --- a/Client/BrzoDoLokacije/app/src/main/res/layout/post_preview.xml +++ b/Client/BrzoDoLokacije/app/src/main/res/layout/post_preview.xml @@ -4,7 +4,6 @@ xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="wrap_content" - android:layout_padding="5dp" android:layout_margin="0dp" android:background="@drawable/rounded_picture_background" android:clipToOutline="true" @@ -14,7 +13,6 @@ android:id="@+id/imageView8" android:layout_width="match_parent" android:layout_height="330dp" - android:layout_padding="0dp" android:outlineProvider="background" android:src="@drawable/b1" app:layout_constraintBottom_toBottomOf="parent" |