-
Notifications
You must be signed in to change notification settings - Fork 226
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
End of Year: Add stories structure #428
Conversation
Added support to pass custom values for border, colors, iconImage
fun SegmentedProgressIndicator( | ||
@FloatRange(from = 0.0, to = 1.0) progress: Float, | ||
modifier: Modifier = Modifier, | ||
color: Color = Color.White, | ||
backgroundColor: Color = color.copy(alpha = IndicatorBackgroundOpacity), | ||
numberOfSegments: Int, | ||
) { |
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.
Most of the logic is taken from Compose
internal implementation of LinearProgressIndicator and this answer.
It doesn't support RTL animation right now.
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.
This is really nice Ashita. Great job!
Adds the initial stories screen. No functionality is built on this PR, just the view.
iOS PR: Automattic/pocket-casts-ios#383
stories_view.mp4
To test
END_OF_YEAR_ENABLED
feature flag totrue
inbase.gradle
Checklist