-
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.
Merge pull request #24 from snuhcs-course/frontend_design2
Frontend design2
- Loading branch information
Showing
39 changed files
with
1,317 additions
and
421 deletions.
There are no files selected for viewing
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: 24 additions & 0 deletions
24
frontend/app/src/main/java/com/team13/fooriend/ui/__FooriendIcon.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,24 @@ | ||
package com.team13.fooriend.ui | ||
|
||
import androidx.compose.ui.graphics.vector.ImageVector | ||
import com.team13.fooriend.ui.fooriendicon.Dislike | ||
import com.team13.fooriend.ui.fooriendicon.Fooriendicon | ||
import com.team13.fooriend.ui.fooriendicon.Home | ||
import com.team13.fooriend.ui.fooriendicon.Like | ||
import com.team13.fooriend.ui.fooriendicon.My | ||
import com.team13.fooriend.ui.fooriendicon.Social | ||
import com.team13.fooriend.ui.fooriendicon.Verified | ||
import kotlin.collections.List as ____KtList | ||
|
||
public object FooriendIcon | ||
|
||
private var __AllIcons: ____KtList<ImageVector>? = null | ||
|
||
public val FooriendIcon.AllIcons: ____KtList<ImageVector> | ||
get() { | ||
if (__AllIcons != null) { | ||
return __AllIcons!! | ||
} | ||
__AllIcons= listOf(Like, Home, Verified, Dislike, Fooriendicon, Social, My) | ||
return __AllIcons!! | ||
} |
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
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
32 changes: 32 additions & 0 deletions
32
frontend/app/src/main/java/com/team13/fooriend/ui/fooriendicon/Dislike.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,32 @@ | ||
package com.team13.fooriend.ui.fooriendicon | ||
|
||
import androidx.compose.ui.graphics.PathFillType.Companion.NonZero | ||
import androidx.compose.ui.graphics.StrokeCap.Companion.Butt | ||
import androidx.compose.ui.graphics.StrokeJoin.Companion.Miter | ||
import androidx.compose.ui.graphics.vector.ImageVector | ||
import androidx.compose.ui.graphics.vector.ImageVector.Builder | ||
import androidx.compose.ui.graphics.vector.path | ||
import androidx.compose.ui.unit.dp | ||
import com.team13.fooriend.ui.FooriendIcon | ||
|
||
public val FooriendIcon.Dislike: ImageVector | ||
get() { | ||
if (_dislike != null) { | ||
return _dislike!! | ||
} | ||
_dislike = Builder(name = "Dislike", defaultWidth = 90.0.dp, defaultHeight = 90.0.dp, | ||
viewportWidth = 90.0f, viewportHeight = 90.0f).apply { | ||
path(fill = null, stroke = null, strokeLineWidth = 0.0f, strokeLineCap = Butt, | ||
strokeLineJoin = Miter, strokeLineMiter = 4.0f, pathFillType = NonZero) { | ||
moveTo(0.0f, 0.0f) | ||
horizontalLineToRelative(90.0f) | ||
verticalLineToRelative(90.0f) | ||
horizontalLineToRelative(-90.0f) | ||
close() | ||
} | ||
} | ||
.build() | ||
return _dislike!! | ||
} | ||
|
||
private var _dislike: ImageVector? = null |
32 changes: 32 additions & 0 deletions
32
frontend/app/src/main/java/com/team13/fooriend/ui/fooriendicon/Fooriendicon.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,32 @@ | ||
package com.team13.fooriend.ui.fooriendicon | ||
|
||
import androidx.compose.ui.graphics.PathFillType.Companion.NonZero | ||
import androidx.compose.ui.graphics.StrokeCap.Companion.Butt | ||
import androidx.compose.ui.graphics.StrokeJoin.Companion.Miter | ||
import androidx.compose.ui.graphics.vector.ImageVector | ||
import androidx.compose.ui.graphics.vector.ImageVector.Builder | ||
import androidx.compose.ui.graphics.vector.path | ||
import androidx.compose.ui.unit.dp | ||
import com.team13.fooriend.ui.FooriendIcon | ||
|
||
public val FooriendIcon.Fooriendicon: ImageVector | ||
get() { | ||
if (_fooriendicon != null) { | ||
return _fooriendicon!! | ||
} | ||
_fooriendicon = Builder(name = "Fooriendicon", defaultWidth = 68.0.dp, defaultHeight = | ||
85.0.dp, viewportWidth = 68.0f, viewportHeight = 85.0f).apply { | ||
path(fill = null, stroke = null, strokeLineWidth = 0.0f, strokeLineCap = Butt, | ||
strokeLineJoin = Miter, strokeLineMiter = 4.0f, pathFillType = NonZero) { | ||
moveTo(0.0f, 0.0f) | ||
horizontalLineToRelative(68.0f) | ||
verticalLineToRelative(85.0f) | ||
horizontalLineToRelative(-68.0f) | ||
close() | ||
} | ||
} | ||
.build() | ||
return _fooriendicon!! | ||
} | ||
|
||
private var _fooriendicon: ImageVector? = null |
Oops, something went wrong.