-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Feature/#40 user info
- Loading branch information
Showing
24 changed files
with
237 additions
and
368 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<navigation xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:app="http://schemas.android.com/apk/res-auto" | ||
android:id="@+id/nav_addbuddy" | ||
app:startDestination="@id/inputBuddyTypeFragment"> | ||
|
||
<fragment | ||
android:id="@+id/inputBuddyInfoFragment" | ||
android:name="com.nocapstone.buddyvet.buddy.ui.InputBuddyInfoFragment" | ||
android:label="InputBuddyInfoFragment"> | ||
<action | ||
android:id="@+id/next" | ||
app:destination="@id/completeRegistrationFragment" /> | ||
</fragment> | ||
<fragment | ||
android:id="@+id/inputBuddyTypeFragment" | ||
android:name="com.nocapstone.buddyvet.buddy.ui.InputBuddyTypeFragment" | ||
android:label="InputBuddyTypeFragment"> | ||
<action | ||
android:id="@+id/next" | ||
app:destination="@id/inputBuddyInfoFragment" /> | ||
</fragment> | ||
<fragment | ||
android:id="@+id/completeRegistrationFragment" | ||
android:name="com.nocapstone.buddyvet.buddy.ui.CompleteRegistrationFragment" | ||
android:label="CompleteRegistrationFragment" /> | ||
</navigation> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
common-ui/src/main/java/com/nocapstone/common_ui/MainActivityUtil.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
common/src/main/java/com/nocapstone/common/domain/entity/UserNameRequest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package com.nocapstone.common.domain.entity | ||
|
||
data class UserNameRequest( | ||
val nickname : String | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 0 additions & 24 deletions
24
onboarding/src/main/java/com/nocapstone/onboarding/ui/OnBoarding3Fragment.kt
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.