Skip to content
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

feat/#42: Signup Complete, Pending View 구현 #43

Merged
merged 1 commit into from
Jan 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -60,24 +60,26 @@ fun YappHeaderActionbar(
@Composable
fun YappHeaderActionbar(
modifier: Modifier = Modifier,
@DrawableRes leftIcon: Int,
@DrawableRes leftIcon: Int?,
contentDescription: String? = null,
onClickLeftIcon: () -> Unit,
onClickLeftIcon: (() -> Unit)? = null,
title: String,
) {
YappHeaderActionbar(
modifier = modifier,
title = title,
leftIcon = {
Icon(
painter = painterResource(id = leftIcon),
contentDescription = contentDescription,
modifier = Modifier.yappClickable(
rippleBounded = false,
rippleRadius = 24.dp,
onClick = onClickLeftIcon,
if (leftIcon != null) {
Icon(
painter = painterResource(id = leftIcon),
contentDescription = contentDescription,
modifier = Modifier.yappClickable(
rippleBounded = false,
rippleRadius = 24.dp,
onClick = onClickLeftIcon,
)
)
)
}
}
)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,12 @@ import com.yapp.core.designsystem.component.header.YappHeaderActionbar
import com.yapp.core.designsystem.theme.YappTheme
import com.yapp.core.ui.component.YappBackground
import com.yapp.feature.signup.R
import com.yapp.feature.signup.signup.content.CompleteContent
import com.yapp.feature.signup.signup.content.EmailContent
import com.yapp.feature.signup.signup.content.NameContent
import com.yapp.feature.signup.signup.content.PasswordContent
import com.yapp.feature.signup.signup.content.PendingContent
import com.yapp.feature.signup.signup.content.PositionContent

@Composable
fun SignUpRoute() {
Expand Down Expand Up @@ -48,8 +51,9 @@ fun SignUpScreen(
SignUpStep.Name -> NameContent()
SignUpStep.Email -> EmailContent()
SignUpStep.Password -> PasswordContent()
SignUpStep.Position -> Unit
SignUpStep.Complete -> Unit
SignUpStep.Position -> PositionContent()
SignUpStep.Complete -> CompleteContent()
SignUpStep.Pending -> PendingContent()
}
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package com.yapp.feature.signup.signup

enum class SignUpStep {
Name, Email, Password, Position, Complete
Name, Email, Password, Position, Complete, Pending
jinukeu marked this conversation as resolved.
Show resolved Hide resolved
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
package com.yapp.feature.signup.signup.content

import androidx.compose.foundation.Image
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.Spacer
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.height
import androidx.compose.foundation.layout.padding
import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.res.stringResource
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
import com.yapp.core.designsystem.component.input.text.YappInputTextLarge
jinukeu marked this conversation as resolved.
Show resolved Hide resolved
import com.yapp.core.designsystem.theme.YappTheme
import com.yapp.core.ui.component.YappBackground
import com.yapp.feature.signup.R

@Composable
fun CompleteContent() {
Column(
modifier = Modifier
.fillMaxSize()
.padding(horizontal = 20.dp)
) {
Text(
text = stringResource(R.string.signup_screen_complete_title),
style = YappTheme.typography.title3Bold,
)

Spacer(Modifier.height(8.dp))

Text(
text = stringResource(R.string.signup_screen_complete_description),
style = YappTheme.typography.body2NormalMedium,
color = YappTheme.colorScheme.labelAlternative,
)

Spacer(Modifier.height(40.dp))

Image(
modifier = Modifier.fillMaxWidth(),
painter = painterResource(id = R.drawable.illust_signup_complete),
contentDescription = null,
)
}
}
jinukeu marked this conversation as resolved.
Show resolved Hide resolved

@Preview
@Composable
fun CompleteContentPreview() {
YappTheme {
YappBackground {
CompleteContent()
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
package com.yapp.feature.signup.signup.content

import androidx.compose.foundation.Image
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.Spacer
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.height
import androidx.compose.foundation.layout.padding
import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.res.stringResource
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
import com.yapp.core.designsystem.component.input.text.YappInputTextLarge
jinukeu marked this conversation as resolved.
Show resolved Hide resolved
import com.yapp.core.designsystem.theme.YappTheme
import com.yapp.core.ui.component.YappBackground
import com.yapp.feature.signup.R

@Composable
fun PendingContent() {
Column(
modifier = Modifier
.fillMaxSize()
.padding(horizontal = 20.dp)
) {
Text(
text = stringResource(R.string.signup_screen_pending_title),
style = YappTheme.typography.title3Bold,
)

Spacer(Modifier.height(8.dp))

Text(
text = stringResource(R.string.signup_screen_pending_description),
style = YappTheme.typography.body2NormalMedium,
color = YappTheme.colorScheme.labelAlternative,
)

Spacer(Modifier.height(40.dp))

Image(
modifier = Modifier.fillMaxWidth(),
painter = painterResource(id = R.drawable.illust_signup_pending),
contentDescription = null,
)
jinukeu marked this conversation as resolved.
Show resolved Hide resolved
}
}

@Preview
@Composable
fun PendingContentPreview() {
YappTheme {
YappBackground {
PendingContent()
}
}
}
126 changes: 126 additions & 0 deletions feature/signup/src/main/res/drawable/illust_signup_complete.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,126 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="320dp"
android:height="113dp"
android:viewportWidth="320"
android:viewportHeight="113">
<group>
<clip-path
android:pathData="M159,13L159,13A50,50 0,0 1,209 63L209,63A50,50 0,0 1,159 113L159,113A50,50 0,0 1,109 63L109,63A50,50 0,0 1,159 13z"/>
<path
android:pathData="M159,13L159,13A50,50 0,0 1,209 63L209,63A50,50 0,0 1,159 113L159,113A50,50 0,0 1,109 63L109,63A50,50 0,0 1,159 13z"
android:fillColor="#FFCB31"/>
<path
android:pathData="M182.34,45.3C181.68,47.57 180.73,49.53 179.53,50.79C178.33,52.05 176.87,52.63 175.21,52.14C173.42,51.62 172.49,50.36 172.18,48.65C171.87,46.95 172.17,44.8 172.82,42.53C173.48,40.26 174.4,38.3 175.59,37.03C176.77,35.76 178.23,35.19 179.96,35.69C181.63,36.17 182.55,37.44 182.89,39.15C183.24,40.87 183,43.03 182.34,45.3Z"
android:fillColor="#000000"/>
<path
android:pathData="M135.9,45.06C136.56,47.34 137.51,49.29 138.71,50.55C139.91,51.82 141.37,52.39 143.04,51.91C144.82,51.39 145.75,50.12 146.06,48.41C146.37,46.71 146.07,44.57 145.42,42.29C144.76,40.02 143.84,38.06 142.66,36.79C141.47,35.52 140.01,34.95 138.28,35.45C136.62,35.94 135.69,37.2 135.35,38.92C135.01,40.63 135.24,42.79 135.9,45.06Z"
android:fillColor="#000000"/>
<path
android:pathData="M159.12,85.6C152.53,85.6 146.56,86.17 142.24,88.5C137.92,90.84 135.25,94.94 135.25,102.01C135.25,108.05 137.62,112.15 141.79,114.75C145.95,117.34 151.92,118.43 159.12,118.43C166.32,118.43 172.29,117.34 176.45,114.75C180.62,112.15 182.99,108.05 182.99,102.01C182.99,94.94 180.32,90.84 176,88.5C171.68,86.17 165.71,85.6 159.12,85.6Z"
android:fillColor="#FA703C"/>
<path
android:pathData="M159.12,44.4C150.54,44.4 141.27,45.98 134.15,49.95C127.02,53.93 122.04,60.3 122.04,69.9C122.04,79.28 126.43,85.65 133.26,89.68C140.09,93.71 149.36,95.4 159.12,95.4C170.31,95.4 179.58,93.33 186.05,89.1C192.52,84.88 196.2,78.51 196.2,69.9C196.2,59.95 191.65,53.58 184.74,49.69C177.82,45.8 168.56,44.4 159.12,44.4Z"
android:fillColor="#FA703C"/>
<path
android:pathData="M147.83,68.3C147.83,69.11 147.5,69.85 146.97,70.38C146.44,70.92 145.7,71.25 144.88,71.25C144.07,71.25 143.33,70.92 142.8,70.38C142.26,69.85 141.93,69.11 141.93,68.3C141.93,67.48 142.26,66.75 142.8,66.21C143.33,65.68 144.07,65.35 144.88,65.35C145.7,65.35 146.44,65.68 146.97,66.21C147.5,66.75 147.83,67.48 147.83,68.3Z"
android:fillColor="#ffffff"/>
<path
android:pathData="M176.31,68.3C176.31,69.11 175.98,69.85 175.45,70.38C174.91,70.92 174.17,71.25 173.36,71.25C172.54,71.25 171.81,70.92 171.27,70.38C170.74,69.85 170.41,69.11 170.41,68.3C170.41,67.48 170.74,66.75 171.27,66.21C171.8,65.68 172.54,65.35 173.36,65.35C174.17,65.35 174.91,65.68 175.45,66.21C175.98,66.75 176.31,67.48 176.31,68.3Z"
android:fillColor="#ffffff"/>
<path
android:pathData="M157.43,65.81C158.45,65.11 159.79,65.11 160.81,65.81L164.7,68.45C165.58,69.05 165.65,70.31 164.84,71L160.74,74.49C159.81,75.28 158.43,75.28 157.5,74.49L153.4,71C152.6,70.31 152.66,69.05 153.54,68.45L157.43,65.81Z"
android:fillColor="#FFCB31"/>
<path
android:pathData="M118.43,84.04C118.15,82.73 118.01,81.34 118.07,80C118.13,78.66 118.38,77.37 118.89,76.27C119.24,75.52 119.79,74.63 120.56,73.84C121.32,73.05 122.31,72.37 123.53,72.04C124.22,71.86 124.96,71.89 125.67,72.09C126.39,72.3 127.07,72.67 127.64,73.18C128.43,73.87 129.05,75.11 129.63,76.5C130.2,77.89 130.73,79.43 131.31,80.71C132.18,82.6 133.48,84.18 134.68,85.41C135.87,86.63 136.97,87.5 137.42,87.97C138.48,89.05 139.3,89.98 139.88,90.84C140.46,91.71 140.8,92.5 140.89,93.31C140.98,94.14 140.98,94.83 140.84,95.49C140.71,96.14 140.44,96.77 139.99,97.47C139.52,98.21 138.8,98.78 138,99.15C137.2,99.52 136.34,99.69 135.6,99.63C132.13,99.35 128.18,97.07 124.93,94.06C121.68,91.05 119.13,87.29 118.43,84.04Z"
android:fillColor="#FA703C"/>
<path
android:pathData="M199.57,84.04C199.85,82.73 199.99,81.34 199.93,80C199.88,78.66 199.62,77.37 199.11,76.27C198.76,75.52 198.21,74.63 197.45,73.84C196.68,73.05 195.69,72.37 194.47,72.04C193.78,71.86 193.04,71.89 192.33,72.09C191.61,72.3 190.93,72.67 190.36,73.18C189.57,73.87 188.95,75.11 188.37,76.5C187.8,77.89 187.27,79.43 186.69,80.71C185.82,82.6 184.52,84.18 183.32,85.41C182.13,86.63 181.03,87.5 180.58,87.97C179.52,89.05 178.7,89.98 178.12,90.84C177.54,91.71 177.2,92.5 177.11,93.31C177.02,94.14 177.02,94.83 177.16,95.49C177.29,96.14 177.57,96.77 178.01,97.47C178.48,98.21 179.21,98.78 180,99.15C180.8,99.52 181.66,99.69 182.4,99.63C185.87,99.35 189.82,97.07 193.07,94.06C196.32,91.05 198.88,87.29 199.57,84.04Z"
android:fillColor="#FA703C"/>
<path
android:pathData="M123.53,72.04C124.22,71.86 124.96,71.89 125.68,72.09C126.39,72.3 127.07,72.67 127.65,73.18C128.43,73.87 129.05,75.11 129.63,76.5C130.2,77.89 130.73,79.43 131.31,80.71C132.18,82.6 133.48,84.18 134.68,85.41C135.87,86.63 136.97,87.5 137.42,87.97C138.48,89.05 139.3,89.98 139.88,90.84"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#F7441C"
android:strokeLineCap="round"/>
<path
android:pathData="M194.47,72.04C193.78,71.86 193.04,71.89 192.33,72.09C191.61,72.3 190.93,72.67 190.36,73.18C189.57,73.87 188.95,75.11 188.37,76.5C187.8,77.89 187.27,79.43 186.69,80.71C185.82,82.6 184.52,84.18 183.33,85.41C182.13,86.63 181.03,87.5 180.58,87.97C179.52,89.05 178.7,89.98 178.12,90.84"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#F7441C"
android:strokeLineCap="round"/>
<path
android:pathData="M187.24,70.76C186.14,72.03 183.9,75.21 183.69,77.73"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#F7441C"
android:strokeLineCap="round"/>
<path
android:pathData="M132.05,70.76C133.14,72.03 135.39,75.21 135.6,77.73"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#F7441C"
android:strokeLineCap="round"/>
<path
android:pathData="M162.31,101.07L162.31,101.07C161.34,101.59 160.23,101.86 159.12,101.86C158.02,101.86 156.91,101.6 155.93,101.07L155.93,101.07C155.56,100.87 155.21,100.63 154.88,100.36C154.59,100.13 154.32,99.87 154.08,99.6C153.83,99.88 153.57,100.13 153.28,100.36C152.95,100.63 152.6,100.87 152.22,101.07L152.22,101.07C151.73,101.33 151.21,101.53 150.68,101.67C150.14,101.8 149.59,101.87 149.03,101.87C148.43,101.87 147.82,101.79 147.24,101.63C146.66,101.47 146.1,101.23 145.58,100.92L145.58,100.92C145.07,100.61 144.61,100.25 144.2,99.83C143.79,99.41 143.43,98.93 143.14,98.42L143.14,98.42C143.05,98.26 143.03,98.08 143.07,97.92C143.11,97.76 143.22,97.61 143.37,97.52L143.37,97.52L143.37,97.52C143.52,97.43 143.7,97.41 143.86,97.46C144.02,97.5 144.16,97.61 144.25,97.76L144.25,97.76C144.49,98.18 144.78,98.57 145.12,98.91C145.45,99.25 145.83,99.55 146.24,99.79C147.04,100.28 147.98,100.53 148.91,100.55C149.85,100.57 150.79,100.36 151.62,99.92L151.62,99.92C152,99.71 152.36,99.46 152.68,99.16C153.01,98.87 153.3,98.54 153.55,98.18L153.55,98.18C153.61,98.09 153.69,98.02 153.78,97.98L153.85,98.11L153.78,97.98C153.87,97.93 153.97,97.9 154.08,97.9C154.18,97.9 154.29,97.93 154.38,97.98L154.31,98.11L154.38,97.98C154.47,98.02 154.55,98.09 154.61,98.18C154.86,98.54 155.15,98.87 155.47,99.16C155.8,99.46 156.16,99.71 156.54,99.92C157.33,100.34 158.23,100.55 159.12,100.55C160.02,100.55 160.92,100.34 161.71,99.92C162.09,99.71 162.45,99.46 162.77,99.16C163.1,98.87 163.39,98.54 163.64,98.18C163.7,98.09 163.78,98.02 163.87,97.97C163.96,97.93 164.06,97.9 164.17,97.9C164.27,97.9 164.38,97.93 164.47,97.97C164.56,98.02 164.64,98.09 164.7,98.18L164.7,98.18C164.95,98.54 165.24,98.87 165.56,99.16L165.46,99.27L165.56,99.16C165.89,99.45 166.24,99.71 166.63,99.91L162.31,101.07ZM162.31,101.07C162.69,100.87 163.04,100.63 163.37,100.36C163.65,100.13 163.92,99.88 164.17,99.6L162.31,101.07ZM172.66,100.92L172.66,100.92C172.14,101.23 171.59,101.47 171,101.63C170.42,101.79 169.82,101.87 169.21,101.87C168.66,101.87 168.1,101.8 167.57,101.67C167.03,101.53 166.51,101.33 166.02,101.07C166.02,101.07 166.02,101.07 166.02,101.07L166.09,100.94L172.66,100.92ZM172.66,100.92C173.17,100.61 173.63,100.25 174.05,99.82C174.46,99.4 174.81,98.93 175.11,98.41L172.66,100.92ZM174.87,97.52C174.72,97.43 174.54,97.41 174.38,97.46C174.22,97.5 174.08,97.61 173.99,97.76L174.12,97.84L173.99,97.76C173.75,98.18 173.46,98.57 173.13,98.91C172.79,99.25 172.42,99.55 172.01,99.79C171.2,100.28 170.27,100.53 169.33,100.55C168.39,100.57 167.45,100.36 166.63,99.91L175.11,98.41C175.2,98.26 175.21,98.08 175.17,97.92C175.13,97.76 175.03,97.61 174.87,97.52ZM174.87,97.52L174.8,97.65L174.87,97.52C174.87,97.52 174.87,97.52 174.87,97.52Z"
android:strokeAlpha="0.3"
android:strokeWidth="0.3"
android:fillColor="#FEEFE9"
android:strokeColor="#FEEFE9"
android:fillAlpha="0.3"/>
<path
android:pathData="M162.37,110.99L162.37,110.99C161.84,110.85 161.32,110.65 160.83,110.39L160.83,110.39C160.46,110.19 160.1,109.95 159.77,109.68C159.49,109.45 159.22,109.19 158.98,108.92C158.73,109.19 158.46,109.45 158.18,109.68C157.85,109.95 157.49,110.19 157.12,110.39C156.15,110.91 155.04,111.18 153.93,111.18C152.82,111.18 151.72,110.91 150.74,110.39C150.27,110.13 149.83,109.82 149.43,109.46C149.02,109.1 148.66,108.69 148.36,108.25L148.36,108.25C148.26,108.1 148.22,107.92 148.25,107.76C148.28,107.6 148.37,107.44 148.52,107.34L148.52,107.34C148.66,107.24 148.84,107.2 149,107.23C149.16,107.26 149.31,107.35 149.42,107.5L149.42,107.5C149.66,107.86 149.96,108.19 150.28,108.48C150.61,108.78 150.96,109.03 151.35,109.23L151.35,109.23C152.14,109.66 153.03,109.87 153.93,109.87C154.83,109.87 155.73,109.66 156.51,109.23L162.37,110.99ZM162.37,110.99C162.91,111.12 163.46,111.19 164.02,111.19C164.63,111.19 165.23,111.11 165.81,110.95C166.39,110.79 166.95,110.55 167.47,110.24L167.47,110.24M162.37,110.99L167.47,110.24M148.6,107.46C148.49,107.54 148.42,107.66 148.4,107.79C148.38,107.91 148.4,108.05 148.48,108.16L148.6,107.46ZM148.6,107.46C148.71,107.38 148.85,107.36 148.97,107.38M148.6,107.46L148.97,107.38M167.47,110.24C167.98,109.93 168.44,109.57 168.85,109.15C169.26,108.72 169.62,108.25 169.91,107.73C170,107.58 170.02,107.4 169.98,107.24C169.94,107.08 169.83,106.93 169.68,106.84C169.53,106.75 169.35,106.73 169.19,106.78C169.03,106.82 168.88,106.93 168.8,107.08C168.56,107.5 168.27,107.89 167.93,108.23C167.6,108.57 167.23,108.87 166.82,109.11C166.01,109.6 165.08,109.85 164.14,109.87C163.2,109.89 162.26,109.68 161.44,109.24M167.47,110.24L156.51,109.23C156.9,109.03 157.26,108.78 157.58,108.48C157.91,108.19 158.2,107.86 158.45,107.5C158.57,107.32 158.78,107.23 158.98,107.23C159.17,107.23 159.38,107.32 159.5,107.5C159.75,107.86 160.04,108.19 160.37,108.48C160.7,108.78 161.05,109.03 161.44,109.24M161.44,109.24L161.37,109.37M161.44,109.24L161.37,109.37M161.37,109.37C160.97,109.15 160.6,108.89 160.27,108.6C159.93,108.29 159.64,107.96 159.38,107.58M161.37,109.37L159.38,107.58M159.38,107.58C159.29,107.45 159.13,107.38 158.98,107.38C158.82,107.38 158.66,107.45 158.57,107.58C158.31,107.96 158.01,108.29 157.68,108.6L159.38,107.58ZM148.97,107.38C149.1,107.4 149.21,107.47 149.29,107.58L148.97,107.38Z"
android:strokeAlpha="0.3"
android:strokeWidth="0.3"
android:fillColor="#FEEFE9"
android:strokeColor="#FEEFE9"
android:fillAlpha="0.3"/>
</group>
<path
android:pathData="M92.16,17.21C93.14,22.43 96.12,26.82 101.39,25.21C107.98,23.21 102.82,17.11 99.91,20.9C97.01,24.69 102.04,31.67 108.22,30.74"
android:strokeWidth="2.5"
android:fillColor="#00000000"
android:strokeColor="#27AE60"
android:strokeLineCap="round"/>
<path
android:pathData="M79.93,78.97C83.19,80.7 86.88,80.99 88.29,77.43C90.07,72.98 84.51,73.13 85.31,76.36C86.1,79.58 92.08,79.88 94.26,76.12"
android:strokeWidth="2.5"
android:fillColor="#00000000"
android:strokeColor="#27AE60"
android:strokeLineCap="round"/>
<path
android:pathData="M67.83,36.3L62.14,34.58"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#EE5120"
android:strokeLineCap="round"/>
<path
android:pathData="M88.29,52.02m-2.41,0.66a2.5,2.5 74.67,1 1,4.82 -1.32a2.5,2.5 74.67,1 1,-4.82 1.32"
android:fillColor="#FFD74B"/>
<path
android:pathData="M63.21,88.06m-2.41,0.66a2.5,2.5 81.86,1 1,4.82 -1.32a2.5,2.5 81.86,1 1,-4.82 1.32"
android:fillColor="#FFD74B"/>
<path
android:pathData="M244.13,66.59C247.07,70.06 251.16,72.07 254.41,68.64C258.47,64.35 252.04,61.99 251.48,66.05C250.91,70.11 257.63,73.18 261.84,69.86"
android:strokeWidth="2.5"
android:fillColor="#00000000"
android:strokeColor="#27AE60"
android:strokeLineCap="round"/>
<path
android:pathData="M225,44.89L229.66,43.08"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#EE5120"
android:strokeLineCap="round"/>
<path
android:pathData="M206.2,20.86L205.4,15.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#EE5120"
android:strokeLineCap="round"/>
<path
android:pathData="M245.35,24.08m-2.41,-0.68a2.5,2.5 60.77,1 1,4.81 1.35a2.5,2.5 60.77,1 1,-4.81 -1.35"
android:fillColor="#FFD74B"/>
<path
android:pathData="M225.35,80.08m-2.41,-0.68a2.5,2.5 103.83,1 1,4.81 1.35a2.5,2.5 103.83,1 1,-4.81 -1.35"
android:fillColor="#FFD74B"/>
</vector>
jinukeu marked this conversation as resolved.
Show resolved Hide resolved
Loading