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/layout/activity_toko_saya.xml b/app/src/main/res/layout/activity_toko_saya.xml new file mode 100644 index 0000000..8c46472 --- /dev/null +++ b/app/src/main/res/layout/activity_toko_saya.xml @@ -0,0 +1,12 @@ + + + + + + \ 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