You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,7 @@
2
2
3
3
## Pending changes
4
4
5
+
-[#311](https://github.com/bumble-tech/appyx/pull/311) – **Breaking change**: `NavTarget` and `State` are now explicitly `Parcelable`. Please see this PR to see approaches to resolve any compilation issues you may notice.
5
6
-[#287](https://github.com/bumble-tech/appyx/pull/287) – **Added**: Introduced a new `rememberCombinedHandler` implementation that takes an immutable list to avoid non-skippable compositions. The previous implementation is now deprecated.
6
7
-[#287](https://github.com/bumble-tech/appyx/pull/287) – **Added**: `ImmutableList` has been added to avoid non-skippable compositions.
7
8
-[#289](https://github.com/bumble-tech/appyx/issues/289) – **Added**: Introduced `interop-rx3` for RxJava 3 support. This has identical functionality to `interop-rx2`.
Copy file name to clipboardExpand all lines: documentation/navmodel/cards.md
+9-2
Original file line number
Diff line number
Diff line change
@@ -15,13 +15,20 @@ The `Cards` NavModel is not currently published, however you can try it in `:sam
15
15
## States
16
16
17
17
```kotlin
18
-
sealedclassState {
18
+
sealedclassState: Parcelable {
19
+
@Parcelize
19
20
data classQueued(valqueueNumber:Int) : State()
21
+
@Parcelize
20
22
object Bottom : State()
23
+
@Parcelize
21
24
object Top : State()
25
+
@Parcelize
22
26
object IndicateLike : State()
27
+
@Parcelize
23
28
object IndicatePass : State()
29
+
@Parcelize
24
30
object VoteLike : State()
31
+
@Parcelize
25
32
object VotePass : State()
26
33
}
27
34
```
@@ -35,7 +42,7 @@ sealed class State {
35
42
Requires defining items that will be converted to profile cards. The first one in the list will become a `Top` card, the second one a `Bottom` card, the rest will be `Queued`.
0 commit comments