From 1098c7308d00ab734754a7b9e542cce34a71c041 Mon Sep 17 00:00:00 2001 From: youlalala Date: Wed, 15 Nov 2023 15:54:58 +0900 Subject: [PATCH] =?UTF-8?q?feat=20:=20toolbar=20style=20=EC=A0=95=EC=9D=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/res/drawable/ic_arrow_back.xml | 9 +++++++ .../ui/src/main/res/drawable/ic_upload.xml | 4 +-- .../core/ui/src/main/res/values/themes.xml | 6 +++++ .../src/main/res/layout/fragment_home.xml | 6 ++--- .../feature/login/NicknameFragment.kt | 15 +++++++++++ .../src/main/res/layout/fragment_nickname.xml | 26 +++++++++++++++++++ 6 files changed, 61 insertions(+), 5 deletions(-) create mode 100644 android/core/ui/src/main/res/drawable/ic_arrow_back.xml create mode 100644 android/feature/login/src/main/java/com/ohdodok/catchytape/feature/login/NicknameFragment.kt create mode 100644 android/feature/login/src/main/res/layout/fragment_nickname.xml diff --git a/android/core/ui/src/main/res/drawable/ic_arrow_back.xml b/android/core/ui/src/main/res/drawable/ic_arrow_back.xml new file mode 100644 index 0000000..8868e96 --- /dev/null +++ b/android/core/ui/src/main/res/drawable/ic_arrow_back.xml @@ -0,0 +1,9 @@ + + + diff --git a/android/core/ui/src/main/res/drawable/ic_upload.xml b/android/core/ui/src/main/res/drawable/ic_upload.xml index c5fdbd9..9a0f7a7 100644 --- a/android/core/ui/src/main/res/drawable/ic_upload.xml +++ b/android/core/ui/src/main/res/drawable/ic_upload.xml @@ -4,10 +4,10 @@ android:viewportWidth="24" android:viewportHeight="24"> diff --git a/android/core/ui/src/main/res/values/themes.xml b/android/core/ui/src/main/res/values/themes.xml index 6146536..608e4c5 100644 --- a/android/core/ui/src/main/res/values/themes.xml +++ b/android/core/ui/src/main/res/values/themes.xml @@ -32,4 +32,10 @@ + + + \ No newline at end of file diff --git a/android/feature/home/src/main/res/layout/fragment_home.xml b/android/feature/home/src/main/res/layout/fragment_home.xml index 3b21623..a35aacb 100644 --- a/android/feature/home/src/main/res/layout/fragment_home.xml +++ b/android/feature/home/src/main/res/layout/fragment_home.xml @@ -14,15 +14,15 @@ android:layout_width="match_parent" android:layout_height="match_parent"> - + app:title="@string/home" /> (R.layout.fragment_nickname) { + + override fun onViewCreated(view: View, savedInstanceState: Bundle?) { + super.onViewCreated(view, savedInstanceState) + } +} \ No newline at end of file diff --git a/android/feature/login/src/main/res/layout/fragment_nickname.xml b/android/feature/login/src/main/res/layout/fragment_nickname.xml new file mode 100644 index 0000000..80b7b4f --- /dev/null +++ b/android/feature/login/src/main/res/layout/fragment_nickname.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + \ No newline at end of file