diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml new file mode 100644 index 0000000..7643783 --- /dev/null +++ b/.idea/codeStyles/Project.xml @@ -0,0 +1,123 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml new file mode 100644 index 0000000..79ee123 --- /dev/null +++ b/.idea/codeStyles/codeStyleConfig.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/.idea/compiler.xml b/.idea/compiler.xml index b589d56..b86273d 100644 --- a/.idea/compiler.xml +++ b/.idea/compiler.xml @@ -1,6 +1,6 @@ - + \ No newline at end of file diff --git a/.idea/gradle.xml b/.idea/gradle.xml index 0897082..7b3006b 100644 --- a/.idea/gradle.xml +++ b/.idea/gradle.xml @@ -4,6 +4,7 @@ - + diff --git a/.idea/other.xml b/.idea/other.xml deleted file mode 100644 index 49481ad..0000000 --- a/.idea/other.xml +++ /dev/null @@ -1,329 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/.idea/runConfigurations.xml b/.idea/runConfigurations.xml new file mode 100644 index 0000000..16660f1 --- /dev/null +++ b/.idea/runConfigurations.xml @@ -0,0 +1,17 @@ + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 1cac3c4..32b6e91 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -12,6 +12,9 @@ android:supportsRtl="true" android:theme="@style/Theme.Ecommerce_serang" tools:targetApi="31"> + diff --git a/app/src/main/java/com/alya/ecommerce_serang/ui/TokoSayaActivity.kt b/app/src/main/java/com/alya/ecommerce_serang/ui/TokoSayaActivity.kt new file mode 100644 index 0000000..b83d465 --- /dev/null +++ b/app/src/main/java/com/alya/ecommerce_serang/ui/TokoSayaActivity.kt @@ -0,0 +1,21 @@ +package com.alya.ecommerce_serang.ui + +import android.os.Bundle +import androidx.activity.enableEdgeToEdge +import androidx.appcompat.app.AppCompatActivity +import androidx.core.view.ViewCompat +import androidx.core.view.WindowInsetsCompat +import com.alya.ecommerce_serang.R + +class TokoSayaActivity : AppCompatActivity() { + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + enableEdgeToEdge() + setContentView(R.layout.activity_toko_saya) + ViewCompat.setOnApplyWindowInsetsListener(findViewById(R.id.main)) { v, insets -> + val systemBars = insets.getInsets(WindowInsetsCompat.Type.systemBars()) + v.setPadding(systemBars.left, systemBars.top, systemBars.right, systemBars.bottom) + insets + } + } +} \ No newline at end of file diff --git a/app/src/main/res/drawable/header_bg.xml b/app/src/main/res/drawable/header_bg.xml new file mode 100644 index 0000000..120466e --- /dev/null +++ b/app/src/main/res/drawable/header_bg.xml @@ -0,0 +1,16 @@ + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/drawable/ic_arrow_back.png b/app/src/main/res/drawable/ic_arrow_back.png new file mode 100644 index 0000000..15b81a6 Binary files /dev/null and b/app/src/main/res/drawable/ic_arrow_back.png differ diff --git a/app/src/main/res/drawable/ic_more_vertical.png b/app/src/main/res/drawable/ic_more_vertical.png new file mode 100644 index 0000000..d0e59bc Binary files /dev/null and b/app/src/main/res/drawable/ic_more_vertical.png differ diff --git a/app/src/main/res/font/dmsans_black.ttf b/app/src/main/res/font/dmsans_black.ttf new file mode 100644 index 0000000..56e9bac Binary files /dev/null and b/app/src/main/res/font/dmsans_black.ttf differ diff --git a/app/src/main/res/font/dmsans_blackitalic.ttf b/app/src/main/res/font/dmsans_blackitalic.ttf new file mode 100644 index 0000000..184bd43 Binary files /dev/null and b/app/src/main/res/font/dmsans_blackitalic.ttf differ diff --git a/app/src/main/res/font/dmsans_bold.ttf b/app/src/main/res/font/dmsans_bold.ttf new file mode 100644 index 0000000..4f5412d Binary files /dev/null and b/app/src/main/res/font/dmsans_bold.ttf differ diff --git a/app/src/main/res/font/dmsans_bolditalic.ttf b/app/src/main/res/font/dmsans_bolditalic.ttf new file mode 100644 index 0000000..6b53ce5 Binary files /dev/null and b/app/src/main/res/font/dmsans_bolditalic.ttf differ diff --git a/app/src/main/res/font/dmsans_extrabold.ttf b/app/src/main/res/font/dmsans_extrabold.ttf new file mode 100644 index 0000000..1d43afd Binary files /dev/null and b/app/src/main/res/font/dmsans_extrabold.ttf differ diff --git a/app/src/main/res/font/dmsans_extrabolditalic.ttf b/app/src/main/res/font/dmsans_extrabolditalic.ttf new file mode 100644 index 0000000..a4e7702 Binary files /dev/null and b/app/src/main/res/font/dmsans_extrabolditalic.ttf differ diff --git a/app/src/main/res/font/dmsans_extralight.ttf b/app/src/main/res/font/dmsans_extralight.ttf new file mode 100644 index 0000000..73f17d1 Binary files /dev/null and b/app/src/main/res/font/dmsans_extralight.ttf differ diff --git a/app/src/main/res/font/dmsans_extralightitalic.ttf b/app/src/main/res/font/dmsans_extralightitalic.ttf new file mode 100644 index 0000000..4319ada Binary files /dev/null and b/app/src/main/res/font/dmsans_extralightitalic.ttf differ diff --git a/app/src/main/res/font/dmsans_italic.ttf b/app/src/main/res/font/dmsans_italic.ttf new file mode 100644 index 0000000..90eaf60 Binary files /dev/null and b/app/src/main/res/font/dmsans_italic.ttf differ diff --git a/app/src/main/res/font/dmsans_light.ttf b/app/src/main/res/font/dmsans_light.ttf new file mode 100644 index 0000000..250517c Binary files /dev/null and b/app/src/main/res/font/dmsans_light.ttf differ diff --git a/app/src/main/res/font/dmsans_lightitalic.ttf b/app/src/main/res/font/dmsans_lightitalic.ttf new file mode 100644 index 0000000..45cbbb3 Binary files /dev/null and b/app/src/main/res/font/dmsans_lightitalic.ttf differ diff --git a/app/src/main/res/font/dmsans_medium.ttf b/app/src/main/res/font/dmsans_medium.ttf new file mode 100644 index 0000000..841d31d Binary files /dev/null and b/app/src/main/res/font/dmsans_medium.ttf differ diff --git a/app/src/main/res/font/dmsans_mediumitalic.ttf b/app/src/main/res/font/dmsans_mediumitalic.ttf new file mode 100644 index 0000000..343122f Binary files /dev/null and b/app/src/main/res/font/dmsans_mediumitalic.ttf differ diff --git a/app/src/main/res/font/dmsans_regular.ttf b/app/src/main/res/font/dmsans_regular.ttf new file mode 100644 index 0000000..07266ae Binary files /dev/null and b/app/src/main/res/font/dmsans_regular.ttf differ diff --git a/app/src/main/res/font/dmsans_semibold.ttf b/app/src/main/res/font/dmsans_semibold.ttf new file mode 100644 index 0000000..afa79e3 Binary files /dev/null and b/app/src/main/res/font/dmsans_semibold.ttf differ diff --git a/app/src/main/res/font/dmsans_semibolditalic.ttf b/app/src/main/res/font/dmsans_semibolditalic.ttf new file mode 100644 index 0000000..1a6f38e Binary files /dev/null and b/app/src/main/res/font/dmsans_semibolditalic.ttf differ diff --git a/app/src/main/res/font/dmsans_thin.ttf b/app/src/main/res/font/dmsans_thin.ttf new file mode 100644 index 0000000..0c02db0 Binary files /dev/null and b/app/src/main/res/font/dmsans_thin.ttf differ diff --git a/app/src/main/res/font/dmsans_thinitalic.ttf b/app/src/main/res/font/dmsans_thinitalic.ttf new file mode 100644 index 0000000..e393451 Binary files /dev/null and b/app/src/main/res/font/dmsans_thinitalic.ttf differ diff --git a/app/src/main/res/layout/activity_toko_saya.xml b/app/src/main/res/layout/activity_toko_saya.xml new file mode 100644 index 0000000..c7f86a8 --- /dev/null +++ b/app/src/main/res/layout/activity_toko_saya.xml @@ -0,0 +1,18 @@ + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/header.xml b/app/src/main/res/layout/header.xml new file mode 100644 index 0000000..f09ffc9 --- /dev/null +++ b/app/src/main/res/layout/header.xml @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml index c8524cd..9eda4aa 100644 --- a/app/src/main/res/values/colors.xml +++ b/app/src/main/res/values/colors.xml @@ -1,5 +1,38 @@ - #FF000000 - #FFFFFFFF + #1B1C1F + #FDFDFD + + #edf5f9 + #c6e1ed + #abd2e5 + #84bed9 + #6db1d1 + #489ec6 + #4290b4 + #33708d + #28576d + #1e4253 + + #ececed + #c4c4c7 + #a7a8ac + #7f8086 + #66686e + #40424a + #3a3c43 + #2d2f35 + #232429 + #1B1C1F + + #eaebf1 + #bdc1d4 + #9da3bf + #7178a2 + #555e90 + #2b3674 + #27316a + #1f2652 + #181e40 + #121731 \ No newline at end of file diff --git a/app/src/main/res/values/dimens.xml b/app/src/main/res/values/dimens.xml new file mode 100644 index 0000000..1c0f5a5 --- /dev/null +++ b/app/src/main/res/values/dimens.xml @@ -0,0 +1,5 @@ + + + 16dp + 6dp + \ No newline at end of file diff --git a/app/src/main/res/values/themes.xml b/app/src/main/res/values/themes.xml index 0fae3da..94e5b99 100644 --- a/app/src/main/res/values/themes.xml +++ b/app/src/main/res/values/themes.xml @@ -1,9 +1,143 @@ - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -