-
-
Notifications
You must be signed in to change notification settings - Fork 690
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
Added FlowLayout for Jetpack Compose Layout, added rememberUpdatedState and derivedStateOf #51
Open
razaghimahdi
wants to merge
11
commits into
skydoves:main
Choose a base branch
from
razaghimahdi:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
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
sorry for the repeated "Add files via upload", my mistake :) |
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
Updated roadmap, added rememberUpdatedState and derivedStateOf, which these are very important things to learn |
razaghimahdi
changed the title
Added FlowLayout for Jetpack Compose Layout
Added FlowLayout for Jetpack Compose Layout, added rememberStateOf and derivedStateOf
Jun 23, 2023
razaghimahdi
changed the title
Added FlowLayout for Jetpack Compose Layout, added rememberStateOf and derivedStateOf
Added FlowLayout for Jetpack Compose Layout, added rememberUpdatedState and derivedStateOf
Jun 27, 2023
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?