-
Notifications
You must be signed in to change notification settings - Fork 224
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
[Suggested Folder] Create suggested folder screen UI #3554
base: main
Are you sure you want to change the base?
Conversation
Generated by 🚫 Danger |
} | ||
|
||
@Composable | ||
private fun Folders(podcastUuids: List<String>, modifier: Modifier = Modifier) { |
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.
When this PR got merged I will refactor this common part
📲 You can test the changes from this Pull Request in 📱 Mobile by scanning the QR code below to install the corresponding build.
📲 You can test the changes from this Pull Request in 🚗 Automotive by scanning the QR code below to install the corresponding build.
📲 You can test the changes from this Pull Request in ⌚ Wear by scanning the QR code below to install the corresponding build.
|
|
||
@Composable | ||
private fun Folders(podcastUuids: List<String>, modifier: Modifier = Modifier) { | ||
val folders = 3 |
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.
Is there a need for this val
?
private fun Folders(podcastUuids: List<String>, modifier: Modifier = Modifier) { | ||
val folders = 3 | ||
|
||
LazyVerticalGrid( |
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.
I might be missing something by why use LazyVerticalGrid
over a Row
?
savedInstanceState: Bundle?, | ||
) = contentWithoutConsumedInsets { | ||
AppTheme(theme.activeTheme) { | ||
SuggestedFoldersPaywall( |
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.
Description
Fixes #3553
Testing Instructions
Screenshots or Screencast
Screen_recording_20250205_151647.webm
Checklist
./gradlew spotlessApply
to automatically apply formatting/linting)modules/services/localization/src/main/res/values/strings.xml
I have tested any UI changes...