Added FlowLayout for Jetpack Compose Layout, added rememberUpdatedState and derivedStateOf#51
Open
razaghimahdi wants to merge 11 commits intoskydoves:mainfrom
Open
Added FlowLayout for Jetpack Compose Layout, added rememberUpdatedState and derivedStateOf#51razaghimahdi wants to merge 11 commits intoskydoves:mainfrom
razaghimahdi wants to merge 11 commits intoskydoves:mainfrom
Conversation
Author
|
sorry for the repeated "Add files via upload", my mistake :) |
Author
|
also this roadmap is awesome, I have some idea to make it little bit better :) |
Added rememberUpdateState and derivedStateOf
Added rememberUpdateState and derivedStateOf
Added rememberUpdateState and derivedStateOf
Author
|
Updated roadmap, added rememberUpdatedState and derivedStateOf, which these are very important things to learn |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Now we have FlowLayout, Flow Layouts in Accompanist is now deprecated. The official androidx.compose.foundation FlowLayouts support is very similar to accompanist/flowlayouts, with a few changes.
It is most similar to Row and Column and shares similar modifiers and the scopes. Unlike the standard Row and Column composables, if it runs out of space on the current row, the children are placed in the next line, and this repeats until the children are fully placed.
for better understanding please check out this: https://google.github.io/accompanist/flowlayout/
What types of changes does your code introduce?