-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Restore gallery screen as past event list (#1398)
* Restore gallery screen as past event list * Update screenshot references for bottom bar navigation icons --------- Co-authored-by: Ashley Davies <[email protected]>
- Loading branch information
Showing
17 changed files
with
359 additions
and
146 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
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
2 changes: 1 addition & 1 deletion
2
...n/io/ashdavies/party/events/LoadStates.kt → ...hdavies/party/events/paging/LoadStates.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
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
90 changes: 90 additions & 0 deletions
90
conferences-app/src/commonMain/kotlin/io/ashdavies/party/material/icons/EventListKt.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,90 @@ | ||
package io.ashdavies.party.material.icons | ||
|
||
import androidx.compose.material.icons.Icons | ||
import androidx.compose.ui.graphics.Color | ||
import androidx.compose.ui.graphics.PathFillType | ||
import androidx.compose.ui.graphics.SolidColor | ||
import androidx.compose.ui.graphics.StrokeCap | ||
import androidx.compose.ui.graphics.StrokeJoin | ||
import androidx.compose.ui.graphics.vector.ImageVector | ||
import androidx.compose.ui.graphics.vector.path | ||
import androidx.compose.ui.unit.dp | ||
|
||
@Suppress("UnusedReceiverParameter") | ||
public val Icons.Outlined.EventList: ImageVector | ||
get() { | ||
if (_eventList != null) { | ||
return _eventList!! | ||
} | ||
_eventList = ImageVector.Builder( | ||
name = "Event_list", | ||
defaultWidth = 24.dp, | ||
defaultHeight = 24.dp, | ||
viewportWidth = 960f, | ||
viewportHeight = 960f, | ||
).apply { | ||
path( | ||
fill = SolidColor(Color.Black), | ||
fillAlpha = 1.0f, | ||
stroke = null, | ||
strokeAlpha = 1.0f, | ||
strokeLineWidth = 1.0f, | ||
strokeLineCap = StrokeCap.Butt, | ||
strokeLineJoin = StrokeJoin.Miter, | ||
strokeLineMiter = 1.0f, | ||
pathFillType = PathFillType.NonZero, | ||
) { | ||
moveTo(640f, 840f) | ||
quadToRelative(-33f, 0f, -56.5f, -23.5f) | ||
reflectiveQuadTo(560f, 760f) | ||
verticalLineToRelative(-160f) | ||
quadToRelative(0f, -33f, 23.5f, -56.5f) | ||
reflectiveQuadTo(640f, 520f) | ||
horizontalLineToRelative(160f) | ||
quadToRelative(33f, 0f, 56.5f, 23.5f) | ||
reflectiveQuadTo(880f, 600f) | ||
verticalLineToRelative(160f) | ||
quadToRelative(0f, 33f, -23.5f, 56.5f) | ||
reflectiveQuadTo(800f, 840f) | ||
close() | ||
moveToRelative(0f, -80f) | ||
horizontalLineToRelative(160f) | ||
verticalLineToRelative(-160f) | ||
horizontalLineTo(640f) | ||
close() | ||
moveTo(80f, 720f) | ||
verticalLineToRelative(-80f) | ||
horizontalLineToRelative(360f) | ||
verticalLineToRelative(80f) | ||
close() | ||
moveToRelative(560f, -280f) | ||
quadToRelative(-33f, 0f, -56.5f, -23.5f) | ||
reflectiveQuadTo(560f, 360f) | ||
verticalLineToRelative(-160f) | ||
quadToRelative(0f, -33f, 23.5f, -56.5f) | ||
reflectiveQuadTo(640f, 120f) | ||
horizontalLineToRelative(160f) | ||
quadToRelative(33f, 0f, 56.5f, 23.5f) | ||
reflectiveQuadTo(880f, 200f) | ||
verticalLineToRelative(160f) | ||
quadToRelative(0f, 33f, -23.5f, 56.5f) | ||
reflectiveQuadTo(800f, 440f) | ||
close() | ||
moveToRelative(0f, -80f) | ||
horizontalLineToRelative(160f) | ||
verticalLineToRelative(-160f) | ||
horizontalLineTo(640f) | ||
close() | ||
moveTo(80f, 320f) | ||
verticalLineToRelative(-80f) | ||
horizontalLineToRelative(360f) | ||
verticalLineToRelative(80f) | ||
close() | ||
moveToRelative(640f, -40f) | ||
} | ||
}.build() | ||
return _eventList!! | ||
} | ||
|
||
@Suppress("ObjectPropertyName") | ||
private var _eventList: ImageVector? = null |
Oops, something went wrong.