-
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.
- Loading branch information
1 parent
5676cae
commit 44e729a
Showing
31 changed files
with
591 additions
and
31 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
app/src/main/java/com/sopetit/softie/ui/ongoingroutine/OngoingRoutineFragment.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,19 @@ | ||
package com.sopetit.softie.ui.ongoingroutine | ||
|
||
import android.os.Bundle | ||
import android.view.View | ||
import androidx.fragment.app.viewModels | ||
import com.sopetit.softie.R | ||
import com.sopetit.softie.databinding.FragmentOngoingRoutineBinding | ||
import com.sopetit.softie.util.binding.BindingFragment | ||
import com.sopetit.softie.util.setStatusBarColor | ||
|
||
class OngoingRoutineFragment:BindingFragment<FragmentOngoingRoutineBinding>(R.layout.fragment_ongoing_routine) { | ||
private val viewModel by viewModels<OngoingRoutineViewModel>() | ||
|
||
override fun onViewCreated(view: View, savedInstanceState: Bundle?) { | ||
super.onViewCreated(view, savedInstanceState) | ||
binding.viewModel = viewModel | ||
setStatusBarColor(R.color.home_background) | ||
} | ||
} |
28 changes: 28 additions & 0 deletions
28
app/src/main/java/com/sopetit/softie/ui/ongoingroutine/OngoingRoutineViewModel.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,28 @@ | ||
package com.sopetit.softie.ui.ongoingroutine | ||
|
||
import androidx.lifecycle.LiveData | ||
import androidx.lifecycle.MutableLiveData | ||
import androidx.lifecycle.ViewModel | ||
import dagger.hilt.android.lifecycle.HiltViewModel | ||
import java.text.SimpleDateFormat | ||
import java.util.Calendar | ||
import java.util.Locale | ||
import javax.inject.Inject | ||
|
||
@HiltViewModel | ||
class OngoingRoutineViewModel @Inject constructor( | ||
|
||
) : ViewModel() { | ||
private val _date = MutableLiveData<String>("") | ||
val date : LiveData<String> get() = _date | ||
init { | ||
getDate() | ||
// TODO get dailyRoutine, challengeRoutine | ||
} | ||
|
||
private fun getDate(){ | ||
val currentDate = Calendar.getInstance().time | ||
val dateFormat = SimpleDateFormat("yyyy년 M월 d일", Locale.getDefault()) | ||
_date.value = dateFormat.format(currentDate) | ||
} | ||
} |
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,13 @@ | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="16dp" | ||
android:height="16dp" | ||
android:viewportWidth="16" | ||
android:viewportHeight="16"> | ||
<path | ||
android:pathData="M8,14.4C11.535,14.4 14.4,11.535 14.4,8C14.4,4.466 11.535,1.6 8,1.6C4.466,1.6 1.6,4.466 1.6,8C1.6,11.535 4.466,14.4 8,14.4ZM8,10.504C9.384,10.504 10.505,9.383 10.505,8C10.505,6.617 9.384,5.496 8,5.496C6.617,5.496 5.496,6.617 5.496,8C5.496,9.383 6.617,10.504 8,10.504Z" | ||
android:fillColor="#7797EA" | ||
android:fillType="evenOdd"/> | ||
<path | ||
android:pathData="M14.1,8C14.1,11.369 11.369,14.1 8,14.1V14.7C11.701,14.7 14.7,11.701 14.7,8H14.1ZM8,1.9C11.369,1.9 14.1,4.631 14.1,8H14.7C14.7,4.3 11.701,1.3 8,1.3V1.9ZM1.9,8C1.9,4.631 4.631,1.9 8,1.9V1.3C4.3,1.3 1.3,4.3 1.3,8H1.9ZM8,14.1C4.631,14.1 1.9,11.369 1.9,8H1.3C1.3,11.701 4.3,14.7 8,14.7V14.1ZM10.205,8C10.205,9.217 9.218,10.204 8,10.204V10.804C9.549,10.804 10.805,9.549 10.805,8H10.205ZM8,5.796C9.218,5.796 10.205,6.783 10.205,8H10.805C10.805,6.451 9.549,5.196 8,5.196V5.796ZM5.796,8C5.796,6.783 6.783,5.796 8,5.796V5.196C6.452,5.196 5.196,6.451 5.196,8H5.796ZM8,10.204C6.783,10.204 5.796,9.217 5.796,8H5.196C5.196,9.549 6.452,10.804 8,10.804V10.204Z" | ||
android:fillColor="#6280CD"/> | ||
</vector> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="17dp" | ||
android:height="17dp" | ||
android:viewportWidth="17" | ||
android:viewportHeight="17"> | ||
android:width="18dp" | ||
android:height="18dp" | ||
android:viewportWidth="18" | ||
android:viewportHeight="18"> | ||
<path | ||
android:pathData="M11.655,5.281C11.804,5.138 12.004,5.059 12.21,5.061C12.417,5.063 12.615,5.144 12.762,5.289C12.91,5.434 12.995,5.63 13.001,5.837C13.006,6.043 12.931,6.244 12.792,6.396L8.552,11.698C8.479,11.777 8.391,11.84 8.294,11.883C8.196,11.927 8.09,11.951 7.983,11.953C7.876,11.955 7.77,11.935 7.67,11.895C7.571,11.855 7.481,11.795 7.405,11.719L4.593,8.908C4.515,8.835 4.452,8.747 4.409,8.649C4.365,8.552 4.342,8.446 4.34,8.339C4.338,8.232 4.358,8.126 4.398,8.027C4.438,7.927 4.498,7.837 4.573,7.762C4.649,7.686 4.739,7.626 4.838,7.586C4.938,7.546 5.044,7.526 5.151,7.528C5.258,7.53 5.363,7.554 5.461,7.597C5.559,7.641 5.647,7.703 5.72,7.782L7.945,10.006L11.635,5.304C11.641,5.296 11.647,5.288 11.655,5.281Z" | ||
android:pathData="M12.341,5.591C12.5,5.44 12.711,5.357 12.929,5.359C13.148,5.36 13.358,5.447 13.514,5.6C13.67,5.753 13.761,5.961 13.767,6.18C13.772,6.399 13.693,6.611 13.545,6.773L9.056,12.386C8.979,12.469 8.886,12.536 8.782,12.583C8.679,12.629 8.567,12.654 8.454,12.656C8.34,12.658 8.227,12.637 8.122,12.595C8.017,12.552 7.921,12.489 7.841,12.409L4.864,9.432C4.782,9.355 4.715,9.262 4.669,9.158C4.623,9.055 4.598,8.943 4.596,8.83C4.594,8.716 4.615,8.604 4.657,8.499C4.7,8.394 4.763,8.298 4.843,8.218C4.923,8.138 5.019,8.075 5.124,8.032C5.229,7.99 5.341,7.969 5.455,7.971C5.568,7.973 5.68,7.998 5.783,8.044C5.887,8.09 5.98,8.157 6.057,8.24L8.413,10.594L12.32,5.616C12.327,5.607 12.333,5.599 12.341,5.591Z" | ||
android:fillColor="#ffffff"/> | ||
</vector> |
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,13 @@ | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="16dp" | ||
android:height="16dp" | ||
android:viewportWidth="16" | ||
android:viewportHeight="16"> | ||
<path | ||
android:pathData="M10.241,2.018C9.964,2.018 9.74,2.242 9.74,2.519V5.548H6.006C5.729,5.548 5.505,5.772 5.505,6.049V9.077H2.476C2.2,9.077 1.975,9.301 1.975,9.578V13.517C1.975,13.793 2.2,14.018 2.476,14.018H13.474C13.751,14.018 13.975,13.793 13.975,13.517V9.578L13.975,9.567V6.049C13.975,6.045 13.975,6.041 13.975,6.037V2.519C13.975,2.242 13.751,2.018 13.474,2.018H10.241Z" | ||
android:fillColor="#84E0A3" | ||
android:fillType="evenOdd"/> | ||
<path | ||
android:pathData="M9.74,5.548V5.848H10.04V5.548H9.74ZM5.505,9.077V9.377H5.805V9.077H5.505ZM13.975,9.578H14.275L14.275,9.574L13.975,9.578ZM13.975,9.567H13.675L13.675,9.57L13.975,9.567ZM13.975,6.037H13.675L13.675,6.044L13.975,6.037ZM10.04,2.519C10.04,2.408 10.13,2.318 10.241,2.318V1.718C9.798,1.718 9.44,2.077 9.44,2.519H10.04ZM10.04,5.548V2.519H9.44V5.548H10.04ZM9.74,5.248H6.006V5.848H9.74V5.248ZM6.006,5.248C5.563,5.248 5.205,5.606 5.205,6.049H5.805C5.805,5.938 5.895,5.848 6.006,5.848V5.248ZM5.205,6.049V9.077H5.805V6.049H5.205ZM5.505,8.777H2.476V9.377H5.505V8.777ZM2.476,8.777C2.034,8.777 1.675,9.135 1.675,9.578H2.275C2.275,9.467 2.365,9.377 2.476,9.377V8.777ZM1.675,9.578V13.517H2.275V9.578H1.675ZM1.675,13.517C1.675,13.959 2.034,14.318 2.476,14.318V13.718C2.365,13.718 2.275,13.628 2.275,13.517H1.675ZM2.476,14.318H13.474V13.718H2.476V14.318ZM13.474,14.318C13.917,14.318 14.275,13.959 14.275,13.517H13.675C13.675,13.628 13.585,13.718 13.474,13.718V14.318ZM14.275,13.517V9.578H13.675V13.517H14.275ZM14.275,9.574L14.275,9.564L13.675,9.57L13.675,9.581L14.275,9.574ZM14.275,9.567V6.049H13.675V9.567H14.275ZM14.275,6.049C14.275,6.043 14.275,6.036 14.275,6.03L13.675,6.044C13.675,6.045 13.675,6.047 13.675,6.049H14.275ZM13.675,2.519V6.037H14.275V2.519H13.675ZM13.474,2.318C13.585,2.318 13.675,2.408 13.675,2.519H14.275C14.275,2.077 13.917,1.718 13.474,1.718V2.318ZM10.241,2.318H13.474V1.718H10.241V2.318Z" | ||
android:fillColor="#6FC28B"/> | ||
</vector> |
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,12 @@ | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="38dp" | ||
android:height="38dp" | ||
android:viewportWidth="38" | ||
android:viewportHeight="38"> | ||
<path | ||
android:pathData="M13,9L25,9A4,4 0,0 1,29 13L29,25A4,4 0,0 1,25 29L13,29A4,4 0,0 1,9 25L9,13A4,4 0,0 1,13 9z" | ||
android:fillColor="#E9EBED"/> | ||
<path | ||
android:pathData="M18.263,20.9C18.266,20.49 18.307,20.158 18.385,19.904C18.466,19.647 18.579,19.442 18.722,19.289C18.865,19.133 19.057,18.98 19.298,18.83C19.78,18.537 20.021,18.163 20.021,17.707C20.021,17.508 19.973,17.334 19.879,17.185C19.788,17.032 19.661,16.914 19.498,16.833C19.338,16.752 19.161,16.711 18.966,16.711C18.784,16.711 18.613,16.75 18.453,16.828C18.294,16.903 18.162,17.019 18.058,17.175C17.954,17.331 17.895,17.525 17.882,17.756H16.827C16.84,17.352 16.941,17.006 17.13,16.716C17.322,16.426 17.577,16.206 17.896,16.057C18.215,15.907 18.572,15.832 18.966,15.832C19.382,15.832 19.75,15.912 20.069,16.071C20.392,16.228 20.641,16.447 20.816,16.73C20.995,17.014 21.085,17.339 21.085,17.707C21.085,18.085 21,18.412 20.831,18.688C20.662,18.962 20.414,19.198 20.089,19.396C19.887,19.52 19.728,19.647 19.61,19.777C19.493,19.904 19.405,20.057 19.347,20.236C19.291,20.415 19.262,20.637 19.259,20.9V20.959H18.263V20.9ZM18.106,22.385C18.106,22.258 18.137,22.141 18.199,22.033C18.261,21.926 18.344,21.841 18.448,21.779C18.556,21.714 18.673,21.682 18.8,21.682C18.924,21.682 19.037,21.713 19.142,21.774C19.249,21.836 19.334,21.921 19.396,22.028C19.461,22.136 19.493,22.251 19.493,22.375C19.493,22.499 19.461,22.614 19.396,22.722C19.334,22.826 19.249,22.91 19.142,22.976C19.037,23.037 18.924,23.068 18.8,23.068C18.676,23.068 18.56,23.037 18.453,22.976C18.349,22.914 18.264,22.831 18.199,22.727C18.137,22.622 18.106,22.508 18.106,22.385Z" | ||
android:fillColor="#73787E"/> | ||
</vector> |
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,9 @@ | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="38dp" | ||
android:height="38dp" | ||
android:viewportWidth="38" | ||
android:viewportHeight="38"> | ||
<path | ||
android:pathData="M14.013,17.575C13.229,17.575 12.588,18.216 12.588,19C12.588,19.784 13.229,20.425 14.013,20.425C14.797,20.425 15.438,19.784 15.438,19C15.438,18.216 14.797,17.575 14.013,17.575ZM23.988,17.575C23.204,17.575 22.563,18.216 22.563,19C22.563,19.784 23.204,20.425 23.988,20.425C24.772,20.425 25.413,19.784 25.413,19C25.413,18.216 24.772,17.575 23.988,17.575ZM19.001,17.575C18.217,17.575 17.576,18.216 17.576,19C17.576,19.784 18.217,20.425 19.001,20.425C19.784,20.425 20.426,19.784 20.426,19C20.426,18.216 19.784,17.575 19.001,17.575Z" | ||
android:fillColor="#9FA4A9"/> | ||
</vector> |
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,12 @@ | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="16dp" | ||
android:height="16dp" | ||
android:viewportWidth="16" | ||
android:viewportHeight="16"> | ||
<path | ||
android:pathData="M2.4,4.218C2.4,3.214 3.214,2.4 4.218,2.4H11.781C12.786,2.4 13.6,3.214 13.6,4.218C13.6,5.218 12.793,6.029 11.795,6.037C12.793,6.044 13.6,6.856 13.6,7.855C13.6,8.705 13.017,9.419 12.229,9.618C13.017,9.818 13.6,10.531 13.6,11.382C13.6,12.386 12.786,13.2 11.781,13.2H4.218C3.214,13.2 2.4,12.386 2.4,11.382C2.4,10.531 2.983,9.818 3.771,9.618C2.983,9.419 2.4,8.705 2.4,7.855C2.4,6.856 3.207,6.044 4.205,6.037C3.207,6.029 2.4,5.218 2.4,4.218Z" | ||
android:strokeLineJoin="round" | ||
android:strokeWidth="0.6" | ||
android:fillColor="#FFB74B" | ||
android:strokeColor="#E59E34"/> | ||
</vector> |
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,13 @@ | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="16dp" | ||
android:height="16dp" | ||
android:viewportWidth="16" | ||
android:viewportHeight="16"> | ||
<path | ||
android:pathData="M5.6,14C6.522,14 7.363,13.67 8,13.127C8.637,13.67 9.478,14 10.4,14C12.388,14 14,12.465 14,10.571C14,9.547 13.529,8.628 12.781,8C13.529,7.372 14,6.453 14,5.429C14,3.535 12.388,2 10.4,2C9.478,2 8.637,2.33 8,2.873C7.363,2.33 6.522,2 5.6,2C3.612,2 2,3.535 2,5.429C2,6.453 2.471,7.372 3.219,8C2.471,8.628 2,9.547 2,10.571C2,12.465 3.612,14 5.6,14Z" | ||
android:fillColor="#FFAAB2" | ||
android:fillType="evenOdd"/> | ||
<path | ||
android:pathData="M8,13.127L8.195,12.899C8.082,12.803 7.918,12.803 7.805,12.899L8,13.127ZM12.781,8L12.588,7.77C12.52,7.827 12.481,7.911 12.481,8C12.481,8.089 12.52,8.173 12.588,8.23L12.781,8ZM8,2.873L7.805,3.101C7.918,3.197 8.082,3.197 8.195,3.101L8,2.873ZM3.219,8L3.412,8.23C3.48,8.173 3.519,8.089 3.519,8C3.519,7.911 3.48,7.827 3.412,7.77L3.219,8ZM7.805,12.899C7.222,13.396 6.45,13.7 5.6,13.7V14.3C6.594,14.3 7.504,13.944 8.195,13.355L7.805,12.899ZM10.4,13.7C9.55,13.7 8.778,13.396 8.195,12.899L7.805,13.355C8.496,13.944 9.406,14.3 10.4,14.3V13.7ZM13.7,10.571C13.7,12.286 12.236,13.7 10.4,13.7V14.3C12.54,14.3 14.3,12.644 14.3,10.571H13.7ZM12.588,8.23C13.273,8.805 13.7,9.643 13.7,10.571H14.3C14.3,9.452 13.784,8.451 12.974,7.77L12.588,8.23ZM13.7,5.429C13.7,6.358 13.273,7.195 12.588,7.77L12.974,8.23C13.784,7.549 14.3,6.548 14.3,5.429H13.7ZM10.4,2.3C12.236,2.3 13.7,3.714 13.7,5.429H14.3C14.3,3.356 12.54,1.7 10.4,1.7V2.3ZM8.195,3.101C8.778,2.604 9.55,2.3 10.4,2.3V1.7C9.406,1.7 8.496,2.056 7.805,2.645L8.195,3.101ZM5.6,2.3C6.45,2.3 7.222,2.604 7.805,3.101L8.195,2.645C7.504,2.056 6.594,1.7 5.6,1.7V2.3ZM2.3,5.429C2.3,3.714 3.763,2.3 5.6,2.3V1.7C3.46,1.7 1.7,3.356 1.7,5.429H2.3ZM3.412,7.77C2.727,7.195 2.3,6.358 2.3,5.429H1.7C1.7,6.548 2.216,7.549 3.026,8.23L3.412,7.77ZM2.3,10.571C2.3,9.643 2.727,8.805 3.412,8.23L3.026,7.77C2.216,8.451 1.7,9.452 1.7,10.571H2.3ZM5.6,13.7C3.763,13.7 2.3,12.286 2.3,10.571H1.7C1.7,12.644 3.46,14.3 5.6,14.3V13.7Z" | ||
android:fillColor="#E98E97"/> | ||
</vector> |
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,19 @@ | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="38dp" | ||
android:height="38dp" | ||
android:viewportWidth="38" | ||
android:viewportHeight="38"> | ||
<path | ||
android:pathData="M19,19m-9.583,0a9.583,9.583 0,1 1,19.167 0a9.583,9.583 0,1 1,-19.167 0" | ||
android:strokeWidth="0.833333" | ||
android:fillColor="#4A4A4A" | ||
android:strokeColor="#4A4A4A"/> | ||
<group> | ||
<clip-path | ||
android:pathData="M14,15h12v12h-12z"/> | ||
<path | ||
android:pathData="M23.775,16.22C23.916,16.361 23.995,16.551 23.995,16.75C23.995,16.949 23.916,17.14 23.775,17.28L18.153,22.902C18.079,22.976 17.991,23.035 17.894,23.075C17.797,23.115 17.693,23.136 17.588,23.136C17.483,23.136 17.379,23.115 17.281,23.075C17.184,23.035 17.096,22.976 17.022,22.902L14.229,20.109C14.157,20.04 14.1,19.957 14.061,19.866C14.022,19.774 14.001,19.676 14,19.576C13.999,19.477 14.018,19.378 14.056,19.286C14.094,19.194 14.149,19.11 14.22,19.039C14.29,18.969 14.374,18.913 14.466,18.876C14.558,18.838 14.657,18.819 14.757,18.82C14.856,18.821 14.955,18.841 15.046,18.881C15.137,18.92 15.22,18.977 15.29,19.049L17.587,21.347L22.714,16.22C22.784,16.15 22.866,16.095 22.957,16.057C23.048,16.019 23.146,16 23.244,16C23.343,16 23.441,16.019 23.532,16.057C23.623,16.095 23.705,16.15 23.775,16.22Z" | ||
android:fillColor="#ffffff" | ||
android:fillType="evenOdd"/> | ||
</group> | ||
</vector> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="20dp" | ||
android:height="20dp" | ||
android:viewportWidth="20" | ||
android:viewportHeight="20"> | ||
android:width="38dp" | ||
android:height="38dp" | ||
android:viewportWidth="38" | ||
android:viewportHeight="38"> | ||
<path | ||
android:strokeWidth="1" | ||
android:pathData="M10,10m-9.5,0a9.5,9.5 0,1 1,19 0a9.5,9.5 0,1 1,-19 0" | ||
android:pathData="M19,19m-9.583,0a9.583,9.583 0,1 1,19.167 0a9.583,9.583 0,1 1,-19.167 0" | ||
android:strokeWidth="0.833333" | ||
android:fillColor="#E9EBED" | ||
android:strokeColor="#CACDD2"/> | ||
</vector> |
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,13 @@ | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="16dp" | ||
android:height="16dp" | ||
android:viewportWidth="16" | ||
android:viewportHeight="16"> | ||
<path | ||
android:pathData="M8.471,3.112C8.289,3.324 7.711,3.324 7.53,3.112C7.004,2.498 6.024,1.877 4.39,2.021C1.945,2.236 1.519,4.733 1.612,5.808C1.612,6.704 1.89,8.201 3.556,10.107C4.56,11.255 6.118,12.31 7.176,13.026C7.513,13.255 7.799,13.448 8,13.6C8,13.6 8,13.6 8,13.6V13.6C8,13.6 8,13.6 8,13.6C8,13.6 8,13.6 8,13.6C8,13.6 8,13.6 8,13.6V13.6C8,13.6 8,13.6 8,13.6C8.202,13.448 8.488,13.255 8.825,13.026C9.883,12.31 11.441,11.255 12.444,10.107C14.111,8.201 14.389,6.704 14.389,5.808C14.481,4.733 14.056,2.236 11.611,2.021C9.977,1.877 8.996,2.498 8.471,3.112Z" | ||
android:fillColor="#FF7086" | ||
android:fillType="evenOdd"/> | ||
<path | ||
android:pathData="M4.39,2.021L4.363,1.722L4.39,2.021ZM1.612,5.808L1.912,5.808L1.912,5.795L1.911,5.782L1.612,5.808ZM3.556,10.107L3.33,10.304H3.33L3.556,10.107ZM7.176,13.026L7.344,12.778H7.344L7.176,13.026ZM8.825,13.026L8.657,12.778H8.657L8.825,13.026ZM12.444,10.107L12.67,10.304L12.444,10.107ZM14.389,5.808L14.09,5.782L14.089,5.795V5.808L14.389,5.808ZM11.611,2.021L11.585,2.32L11.611,2.021ZM8,13.6L8.181,13.84L8,13.6ZM8,13.6L7.82,13.84L8,13.6ZM8.471,3.112L8.243,2.917L8.471,3.112ZM4.416,2.32C5.951,2.185 6.838,2.764 7.302,3.307L7.758,2.917C7.171,2.231 6.097,1.57 4.363,1.722L4.416,2.32ZM1.911,5.782C1.868,5.289 1.947,4.454 2.317,3.728C2.679,3.018 3.315,2.417 4.416,2.32L4.363,1.722C3.02,1.84 2.221,2.595 1.782,3.456C1.351,4.301 1.263,5.252 1.313,5.834L1.911,5.782ZM3.782,9.91C2.161,8.056 1.912,6.628 1.912,5.808L1.312,5.808C1.312,6.779 1.618,8.346 3.33,10.304L3.782,9.91ZM7.344,12.778C6.278,12.056 4.755,11.023 3.782,9.91L3.33,10.304C4.364,11.487 5.958,12.564 7.008,13.275L7.344,12.778ZM8.181,13.36C7.972,13.203 7.678,13.005 7.344,12.778L7.008,13.275C7.347,13.505 7.626,13.694 7.82,13.84L8.181,13.36ZM7.7,13.6V13.6H8.3V13.6H7.7ZM7.7,13.6V13.6H8.3V13.6H7.7ZM8.181,13.84C8.375,13.694 8.653,13.505 8.993,13.275L8.657,12.778C8.322,13.005 8.029,13.203 7.82,13.36L8.181,13.84ZM8.993,13.275C10.043,12.564 11.637,11.487 12.67,10.304L12.219,9.91C11.246,11.023 9.722,12.056 8.657,12.778L8.993,13.275ZM12.67,10.304C14.383,8.346 14.689,6.779 14.689,5.808L14.089,5.808C14.089,6.628 13.839,8.056 12.219,9.91L12.67,10.304ZM14.688,5.834C14.738,5.252 14.649,4.301 14.219,3.456C13.78,2.595 12.981,1.84 11.637,1.722L11.585,2.32C12.686,2.417 13.322,3.018 13.684,3.728C14.054,4.454 14.132,5.289 14.09,5.782L14.688,5.834ZM11.637,1.722C9.904,1.57 8.83,2.231 8.243,2.917L8.699,3.307C9.163,2.764 10.05,2.185 11.585,2.32L11.637,1.722ZM8.3,13.6C8.3,13.692 8.258,13.782 8.181,13.84L7.82,13.36C7.743,13.418 7.7,13.508 7.7,13.6H8.3ZM7.82,13.84C8.018,13.988 8.3,13.847 8.3,13.6H7.7C7.7,13.353 7.983,13.212 8.18,13.36L7.82,13.84ZM8.18,13.84C8.074,13.92 7.927,13.92 7.82,13.84L8.18,13.36C8.074,13.28 7.927,13.28 7.82,13.36L8.18,13.84ZM7.82,13.84C7.743,13.782 7.7,13.692 7.7,13.6H8.3C8.3,13.508 8.258,13.418 8.181,13.36L7.82,13.84ZM7.7,13.6C7.7,13.847 7.983,13.988 8.18,13.84L7.82,13.36C8.018,13.212 8.3,13.353 8.3,13.6H7.7ZM7.302,3.307C7.396,3.417 7.523,3.481 7.636,3.517C7.753,3.555 7.879,3.571 8,3.571C8.121,3.571 8.248,3.555 8.365,3.517C8.478,3.481 8.605,3.417 8.699,3.307L8.243,2.917C8.246,2.913 8.233,2.929 8.181,2.946C8.133,2.961 8.069,2.971 8,2.971C7.932,2.971 7.868,2.961 7.82,2.946C7.768,2.929 7.755,2.913 7.758,2.917L7.302,3.307Z" | ||
android:fillColor="#F85770"/> | ||
</vector> |
Oops, something went wrong.