-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
設定画面の保存ロジックを作成しました。プロフィール画面のUIも整えました。 #146
base: main
Are you sure you want to change the base?
Changes from all commits
4c7713c
d144367
f002952
2865133
79e4a48
1fcb623
8db2608
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,16 @@ | ||
import android.content.Context | ||
import androidx.datastore.core.DataStore | ||
import androidx.datastore.preferences.core.Preferences | ||
import androidx.datastore.preferences.core.intPreferencesKey | ||
import androidx.datastore.preferences.core.stringPreferencesKey | ||
import androidx.datastore.preferences.preferencesDataStore | ||
|
||
val Context.dataStore: DataStore<Preferences> by preferencesDataStore(name = "dataStore") | ||
|
||
// Key definition | ||
val EXAMPLE_COUNTER = intPreferencesKey("example_counter") | ||
val bearName = stringPreferencesKey("bearName") | ||
val targetPeriod = stringPreferencesKey("target_period") | ||
val targetSteps = stringPreferencesKey("target_steps") | ||
val userName = stringPreferencesKey("UserName") | ||
val userIcon = stringPreferencesKey("UserIcon") | ||
val enthusiaasm = stringPreferencesKey("Enthusiasm") | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.