Panagiotis Triantafyllou

redesign part1

Showing 34 changed files with 133 additions and 151 deletions
This diff is collapsed. Click to expand it.

412 Bytes | W: | H:

384 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin

369 Bytes | W: | H:

643 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin

972 Bytes | W: | H:

772 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin

1.9 KB | W: | H:

1.18 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

935 Bytes | W: | H:

533 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/cos_light_grey"/>
<corners android:radius="10dp"/>
<solid android:color="@color/cos_light_grey3"/>
<corners android:radius="16dp"/>
<padding android:left="0dp" android:top="0dp" android:right="0dp" android:bottom="0dp" />
</shape>
\ No newline at end of file
......
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/white"/>
<stroke android:width="2dp" android:color="@color/cos_green12" />
<corners android:radius="16dp" />
</shape>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/white"/>
<stroke android:width="2dp" android:color="@color/cos_green6_tr" />
<corners android:radius="16dp" />
</shape>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/round_border_green2_tr" android:state_pressed="true" />
<item android:drawable="@drawable/round_border_green2" android:state_pressed="false" />
</selector>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="4dp" />
<corners android:radius="16dp" />
<solid android:color="@android:color/white" />
</shape>
\ No newline at end of file
......
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="4dp" />
<corners android:radius="16dp" />
<solid android:color="@color/white_tr" />
</shape>
\ No newline at end of file
......
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="12dp" />
<corners android:radius="16dp" />
<solid
android:width="2dp"
android:color="@color/cos_green5" />
android:color="@color/cos_green12" />
</shape>
\ No newline at end of file
......
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="12dp" />
<corners android:radius="16dp" />
<solid
android:width="2dp"
android:color="@color/cos_green5_tr" />
android:color="@color/cos_green6_tr" />
</shape>
\ No newline at end of file
......
......@@ -2,8 +2,8 @@
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners
android:topLeftRadius="12dp"
android:topRightRadius="12dp" />
android:topLeftRadius="16dp"
android:topRightRadius="16dp" />
<solid android:color="@android:color/white" />
<solid android:color="@color/white" />
</shape>
\ No newline at end of file
......
......@@ -3,13 +3,13 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white">
android:background="@color/white">
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/cl_loyalty_wallet_header"
android:layout_width="match_parent"
android:layout_height="48dp"
android:background="@android:color/white">
android:layout_height="64dp"
android:background="@color/white">
<ImageView
android:id="@+id/iv_contextual_back"
......@@ -23,9 +23,10 @@
app:layout_constraintTop_toTopOf="parent" />
<TextView
fontPath="fonts/BTCosmo-Bold.ttf"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/grey"
android:textColor="@color/cos_light_black"
android:textSize="17sp"
android:textStyle="bold"
app:layout_constraintBottom_toBottomOf="parent"
......@@ -43,7 +44,7 @@
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white">
android:background="@color/white">
<!-- android:background="@drawable/shape_cos_loyalty_white"-->
<androidx.constraintlayout.widget.ConstraintLayout
......@@ -59,30 +60,20 @@
android:id="@+id/imageView6"
android:layout_width="match_parent"
android:layout_height="253dp"
android:layout_marginTop="0.5dp"
android:scaleType="centerCrop"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:src="@drawable/carousel_banner" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/ic_line"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="@+id/imageView6">
</LinearLayout>
<TextView
fontPath="fonts/BTCosmo-Bold.ttf"
android:id="@+id/textView13"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="32dp"
android:gravity="center"
android:paddingHorizontal="32dp"
android:textColor="#415564"
android:textColor="@color/cos_light_black"
android:textSize="18sp"
android:textStyle="bold"
app:layout_constraintEnd_toEndOf="parent"
......@@ -92,13 +83,14 @@
tools:text="Πάρε δωρεάν μηνιαία πακέτα με πάνες στα supermarket Σκλαβενίτης!" />
<TextView
fontPath="fonts/PeridotPE-Regular.ttf"
android:id="@+id/textView14"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:gravity="center"
android:paddingHorizontal="32dp"
android:textColor="#415564"
android:textColor="@color/cos_light_black"
android:textSize="16sp"
tools:text="test test"
app:layout_constraintEnd_toEndOf="parent"
......@@ -107,26 +99,24 @@
<LinearLayout
android:id="@+id/ll_activate_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginHorizontal="32dp"
android:layout_width="160dp"
android:layout_height="50dp"
android:background="@drawable/selector_button_green"
android:gravity="center"
android:orientation="horizontal"
android:paddingHorizontal="16dp"
android:paddingVertical="8dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent">
<TextView
fontPath="fonts/PeridotPE-SemiBold.ttf"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:includeFontPadding="false"
android:text="@string/cos_dlg_positive_button"
android:textColor="@color/white"
android:textFontWeight="600"
android:textSize="17dp" />
android:textSize="16sp" />
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
......
......@@ -3,13 +3,13 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white">
android:background="@color/white">
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/cl_loyalty_wallet_header"
android:layout_width="match_parent"
android:layout_height="48dp"
android:background="@android:color/white">
android:layout_height="64dp"
android:background="@color/white">
<ImageView
android:id="@+id/iv_coupon_share_back"
......@@ -26,9 +26,9 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/cos_coupon_gift"
android:textColor="@color/grey"
android:textColor="@color/cos_light_black"
android:textSize="17sp"
fontPath="fonts/pf_square_sans_pro_medium.ttf"
fontPath="fonts/BTCosmo-Bold.ttf"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
......@@ -43,7 +43,7 @@
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white">
android:background="@color/white">
<!-- android:background="@drawable/shape_cos_loyalty_white"-->
<androidx.constraintlayout.widget.ConstraintLayout
......@@ -59,22 +59,11 @@
android:id="@+id/imageView6"
android:layout_width="match_parent"
android:layout_height="253dp"
android:layout_marginTop="0.5dp"
android:scaleType="centerCrop"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:src="@drawable/carousel_banner" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/ic_line"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="@+id/imageView6">
</LinearLayout>
<TextView
android:id="@+id/textView13"
android:layout_width="match_parent"
......@@ -82,11 +71,10 @@
android:layout_marginTop="32dp"
android:gravity="center"
android:paddingHorizontal="32dp"
android:textColor="#415564"
android:textColor="@color/cos_light_black"
android:textSize="18sp"
fontPath="fonts/pf_square_sans_pro_medium.ttf"
fontPath="fonts/BTCosmo-Bold.ttf"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.509"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/imageView6"
tools:text="Πάρε δωρεάν μηνιαία πακέτα με πάνες στα supermarket Σκλαβενίτης!" />
......@@ -99,9 +87,9 @@
android:gravity="center"
android:paddingHorizontal="32dp"
android:text="@string/cos_coupon_share_gift_title"
android:textColor="#415564"
android:textColor="@color/cos_light_black"
android:textSize="16sp"
fontPath="fonts/pf_square_sans_pro_regular.ttf"
fontPath="fonts/PeridotPE-Regular.ttf"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/textView13" />
......@@ -123,8 +111,8 @@
android:layout_alignParentStart="true"
android:layout_centerVertical="true"
android:text="@string/cos_coupon_share_sender"
fontPath="fonts/pf_square_sans_pro_regular.ttf"
android:textColor="@color/grey"
fontPath="fonts/PeridotPE-Regular.ttf"
android:textColor="@color/cos_gray2"
android:textSize="16sp" />
<ImageView
......@@ -165,9 +153,9 @@
android:background="@android:color/transparent"
android:hint="@string/cos_coupon_share_hint"
android:inputType="phone"
fontPath="fonts/pf_square_sans_pro_regular.ttf"
android:textColor="@color/grey"
android:textColorHint="@color/cos_grey8"
fontPath="fonts/PeridotPE-Regular.ttf"
android:textColor="@color/cos_gray2"
android:textColorHint="@color/cos_gray2"
android:textSize="16sp" />
</RelativeLayout>
......@@ -183,15 +171,13 @@
<LinearLayout
android:id="@+id/ll_share_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_width="190dp"
android:layout_height="50dp"
android:layout_marginHorizontal="32dp"
android:layout_marginTop="64dp"
android:background="@drawable/selector_button_green"
android:gravity="center"
android:orientation="horizontal"
android:paddingHorizontal="16dp"
android:paddingVertical="8dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/v_separator2">
......@@ -200,10 +186,11 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:includeFontPadding="false"
android:text="@string/cos_coupon_share_button"
android:textColor="@color/white"
fontPath="fonts/pf_square_sans_pro_medium.ttf"
android:textSize="17dp" />
fontPath="fonts/PeridotPE-SemiBold.ttf"
android:textSize="16sp" />
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
......
......@@ -3,13 +3,13 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white">
android:background="@color/white">
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/cl_loyalty_wallet_header"
android:layout_width="match_parent"
android:layout_height="48dp"
android:background="@android:color/white">
android:layout_height="64dp"
android:background="@color/white">
<ImageView
android:id="@+id/iv_couponset_info_back"
......@@ -23,11 +23,11 @@
app:layout_constraintTop_toTopOf="parent" />
<TextView
fontPath="fonts/pf_square_sans_pro_medium.ttf"
fontPath="fonts/BTCosmo-Bold.ttf"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/cos_coupon_info_title"
android:textColor="@color/grey"
android:textColor="@color/cos_light_black"
android:textSize="17sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
......@@ -39,14 +39,14 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/cl_loyalty_wallet_header"
android:background="@android:color/white"
android:background="@color/white"
android:fillViewport="true">
<LinearLayout
android:id="@+id/cl_loyalty_info_view_inner"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/white"
android:background="@color/white"
android:gravity="center_horizontal"
android:orientation="vertical"
android:paddingBottom="48dp">
......@@ -55,52 +55,51 @@
android:id="@+id/imageView6"
android:layout_width="match_parent"
android:layout_height="253dp"
android:layout_marginTop="0.5dp"
android:scaleType="centerCrop"
tools:src="@drawable/carousel_banner" />
<TextView
android:id="@+id/textView13"
fontPath="fonts/pf_square_sans_pro_medium.ttf"
fontPath="fonts/BTCosmo-Bold.ttf"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="32dp"
android:gravity="center"
android:paddingHorizontal="32dp"
android:textColor="#415564"
android:textColor="@color/cos_light_black"
android:textSize="18sp"
tools:text="Πάρε δωρεάν μηνιαία πακέτα με πάνες στα supermarket Σκλαβενίτης!" />
<TextView
android:id="@+id/textView14"
fontPath="fonts/pf_square_sans_pro_regular.ttf"
fontPath="fonts/PeridotPE-Regular.ttf"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:gravity="center"
android:paddingHorizontal="32dp"
android:textColor="#415564"
android:textColor="@color/cos_light_black"
android:textSize="16sp"
tools:text="Χρησιμοποίησε τον παρακάτω κωδικό και πάρε δωρεάν πακέτο πάνες Pampers αποκλειστικά στα Supermarket Σκλαβενίτης" />
<LinearLayout
android:id="@+id/ll_get_gift"
android:layout_width="240dp"
android:layout_width="160dp"
android:layout_height="50dp"
android:layout_marginHorizontal="32dp"
android:layout_marginTop="27dp"
android:background="@drawable/selector_button_green"
android:gravity="center"
android:orientation="horizontal">
<TextView
fontPath="fonts/pf_square_sans_pro_medium.ttf"
fontPath="fonts/PeridotPE-SemiBold.ttf"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:includeFontPadding="false"
android:text="@string/cos_redeem_coupon"
android:textColor="@color/white"
android:textSize="17dp" />
android:textSize="16sp" />
</LinearLayout>
<RelativeLayout
......@@ -120,45 +119,39 @@
<TextView
android:id="@+id/tv_terms"
fontPath="fonts/pf_square_sans_pro_medium.ttf"
fontPath="fonts/PeridotPE-Bold.ttf"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/cos_coupon_terms_title"
android:textColor="@color/grey"
android:textColor="@color/cos_light_black"
android:textSize="16sp" />
<ImageView
android:id="@+id/iv_terms_arrow"
android:layout_width="14dp"
android:layout_height="14dp"
android:layout_marginTop="3dp"
android:layout_marginStart="6dp"
android:src="@drawable/ic_down_dark_new" />
</LinearLayout>
<TextView
android:id="@+id/tv_terms_value"
fontPath="fonts/pf_square_sans_pro_regular.ttf"
fontPath="fonts/PeridotPE-Regular.ttf"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/ll_terms_inner"
android:layout_marginHorizontal="64dp"
android:layout_marginTop="16dp"
android:textColor="@color/grey"
android:textColor="@color/cos_gray"
android:visibility="gone"
android:textSize="16sp"
tools:text="@string/cos_coupon_date"
tools:visibility="gone" />
tools:visibility="visible" />
</RelativeLayout>
</LinearLayout>
</ScrollView>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="48dp"
android:background="@drawable/ic_line">
</LinearLayout>
<ProgressBar
android:id="@+id/pb_loading"
android:layout_width="48dp"
......
......@@ -5,22 +5,20 @@
android:id="@+id/cl_bill_payment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/cos_grey5"
android:background="@color/cos_light_grey3"
android:orientation="vertical">
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/cl_bill_header"
android:layout_width="match_parent"
android:layout_height="64dp"
android:translationZ="10dp"
android:background="@drawable/ic_background_transparent_shadow">
android:background="@color/white">
<ImageView
android:id="@+id/iv_list_close"
android:layout_width="48dp"
android:layout_height="48dp"
android:layout_marginStart="16dp"
android:layout_marginBottom="16dp"
android:scaleType="centerInside"
android:src="@drawable/ic_back"
app:layout_constraintBottom_toBottomOf="parent"
......@@ -32,10 +30,9 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:textColor="@color/grey"
android:textColor="@color/cos_light_black"
android:textSize="17sp"
android:layout_marginBottom="16dp"
fontPath="fonts/pf_square_sans_pro_bold.ttf"
fontPath="fonts/BTCosmo-Bold.ttf"
android:text="@string/cos_gifts_title"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
......@@ -46,7 +43,6 @@
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="-18dp"
android:orientation="vertical">
<LinearLayout
......@@ -103,7 +99,7 @@
android:clipToPadding="false"
android:orientation="vertical"
android:overScrollMode="never"
android:paddingTop="44dp" />
android:paddingVertical="24dp" />
<!-- <androidx.constraintlayout.widget.ConstraintLayout-->
<!-- android:id="@+id/cl_recycler_inner"-->
......
......@@ -3,13 +3,13 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white">
android:background="@color/white">
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/cl_loyalty_wallet_header"
android:layout_width="match_parent"
android:layout_height="48dp"
android:background="@android:color/white">
android:layout_height="64dp"
android:background="@color/white">
<ImageView
android:id="@+id/iv_telco_back"
......@@ -24,11 +24,11 @@
<TextView
android:id="@+id/tv_telco_header_title"
fontPath="fonts/pf_square_sans_pro_medium.ttf"
fontPath="fonts/BTCosmo-Bold.ttf"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/cos_dark_blue"
android:textSize="16sp"
android:textColor="@color/cos_light_black"
android:textSize="17sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
......@@ -40,12 +40,13 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/cl_loyalty_wallet_header"
android:background="@color/white"
android:fillViewport="true">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white">
android:background="@color/white">
<!-- android:background="@drawable/shape_cos_loyalty_white"-->
<RelativeLayout
......@@ -63,18 +64,10 @@
android:layout_width="match_parent"
android:layout_height="253dp"
android:layout_centerHorizontal="true"
android:layout_marginTop="0.5dp"
android:scaleType="centerCrop"
tools:src="@drawable/carousel_banner" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/ic_line">
</LinearLayout>
<LinearLayout
android:id="@+id/ll_telco_gift_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
......@@ -86,7 +79,7 @@
<TextView
android:id="@+id/tv_telco_gift_value"
fontPath="fonts/pf_square_sans_pro_medium.ttf"
fontPath="fonts/PeridotPE-SemiBold.ttf"
android:layout_width="64dp"
android:layout_height="64dp"
android:background="@drawable/shape_round_border_gradient"
......@@ -97,11 +90,11 @@
<TextView
android:id="@+id/tv_telco_gift_type"
fontPath="fonts/pf_square_sans_pro_regular.ttf"
fontPath="fonts/PeridotPE-Regular.ttf"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:textColor="@color/grey"
android:textColor="@color/cos_light_black"
android:textSize="15sp"
tools:text="Internet" />
</LinearLayout>
......@@ -125,14 +118,14 @@
<TextView
android:id="@+id/tv_telco_gift_duration"
fontPath="fonts/pf_square_sans_pro_regular.ttf"
fontPath="fonts/PeridotPE-Regular.ttf"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/shape_round_border_gradient2"
android:gravity="center"
android:paddingHorizontal="12dp"
android:paddingVertical="5dp"
android:textColor="@color/grey"
android:textColor="@color/cos_light_black"
android:textSize="16sp"
app:layout_constraintBottom_toBottomOf="@+id/cl_telco_duration_view_inner"
app:layout_constraintEnd_toEndOf="parent"
......@@ -143,37 +136,37 @@
<TextView
android:id="@+id/textView13"
fontPath="fonts/pf_square_sans_pro_regular.ttf"
fontPath="fonts/PeridotPE-Regular.ttf"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/cl_telco_duration_view"
android:layout_marginTop="24dp"
android:gravity="center"
android:paddingHorizontal="32dp"
android:textColor="#415564"
android:textColor="@color/cos_light_black"
android:textSize="17sp"
tools:text="Πάρε δωρεάν μηνιαία πακέτα με πάνες στα supermarket Σκλαβενίτης!" />
<LinearLayout
android:id="@+id/ll_activate_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_width="160dp"
android:layout_height="50dp"
android:layout_below="@+id/textView13"
android:layout_centerHorizontal="true"
android:layout_marginTop="44dp"
android:background="@drawable/selector_button_green"
android:orientation="horizontal"
android:paddingHorizontal="36dp"
android:paddingVertical="8dp">
android:gravity="center"
android:orientation="horizontal">
<TextView
fontPath="fonts/pf_square_sans_pro_medium.ttf"
fontPath="fonts/PeridotPE-SemiBold.ttf"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:includeFontPadding="false"
android:text="@string/cos_dlg_positive_button"
android:textColor="@color/white"
android:textSize="16dp" />
android:textSize="16sp" />
</LinearLayout>
<RelativeLayout
......@@ -195,32 +188,34 @@
<TextView
android:id="@+id/tv_see_more"
fontPath="fonts/pf_square_sans_pro_regular.ttf"
fontPath="fonts/PeridotPE-Bold.ttf"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/cos_see_more2"
android:textColor="@color/grey"
android:textColor="@color/cos_light_black"
android:textSize="16sp" />
<ImageView
android:id="@+id/iv_see_more_arrow"
android:layout_width="14dp"
android:layout_height="14dp"
android:layout_marginTop="3dp"
android:layout_marginStart="6dp"
android:src="@drawable/ic_down_dark_new" />
</LinearLayout>
<TextView
android:id="@+id/tv_see_more_value"
fontPath="fonts/pf_square_sans_pro_regular.ttf"
fontPath="fonts/PeridotPE-Regular.ttf"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/ll_see_more"
android:layout_marginHorizontal="32dp"
android:layout_marginTop="16dp"
android:textColor="@color/grey"
android:textSize="14sp"
android:textColor="@color/cos_gray"
android:textSize="16sp"
android:visibility="gone"
tools:visibility="visible"
tools:text="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. " />
</RelativeLayout>
......
......@@ -15,13 +15,13 @@
<TextView
android:id="@+id/tv_sender_value"
fontPath="fonts/pf_square_sans_pro_bold.ttf"
fontPath="fonts/BTCosmo-Bold.ttf"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_marginStart="24dp"
android:text="@string/cos_coupon_share_sender"
android:textColor="@color/grey"
android:textColor="@color/cos_light_black"
android:textSize="16sp" />
<ImageView
......
......@@ -9,9 +9,9 @@
<androidx.cardview.widget.CardView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginHorizontal="16dp"
app:cardCornerRadius="4dp">
app:cardElevation="0dp"
app:cardCornerRadius="16dp">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
......@@ -31,11 +31,9 @@
android:layout_height="0dp"
android:scaleType="centerCrop"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toLeftOf="@+id/gl_vertical_60_percent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.0"
tools:src="@drawable/ic_cosmote_logo_horizontal_grey" />
<TextView
......@@ -46,7 +44,7 @@
android:gravity="center"
android:maxLines="4"
android:textColor="@color/grey"
fontPath="fonts/pf_square_sans_pro_regular.ttf"
fontPath="fonts/PeridotPE-Regular.ttf"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toRightOf="@+id/gl_vertical_60_percent"
app:layout_constraintRight_toRightOf="parent"
......
......@@ -10,18 +10,18 @@
android:id="@+id/ll_share_view2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="24dp"
android:layout_marginHorizontal="12dp"
android:layout_marginTop="16dp">
<TextView
android:id="@+id/tv_phone_share"
fontPath="fonts/PeridotPE-Regular.ttf"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_centerVertical="true"
android:background="@android:color/transparent"
android:textColor="@color/grey"
fontPath="fonts/pf_square_sans_pro_medium.ttf"
android:textColor="@color/cos_light_black"
android:textSize="16sp"
tools:text="6987654322" />
</RelativeLayout>
......
......@@ -64,4 +64,10 @@
<color name="cos_grey10">#53626E</color>
<color name="cos_green11">#78BE6D</color>
<color name="cos_skyblue3">#0FABD6</color>
<color name="cos_light_grey3">#F2F2F3</color>
<color name="cos_light_black">#212121</color>
<color name="cos_green12">#0EA600</color>
<color name="cos_green6_tr">#660EA600</color>
<color name="cos_gray">#9D9D9C</color>
<color name="cos_gray2">#848484</color>
</resources>
\ No newline at end of file
......