just for the extra information, why is ArrayList&l...
# compose-destinations
p
just for the extra information, why is ArrayList<> is usable for the nav args and not List<>?
r
Hi! Android Bundle takes an ArrayList, not List. Everything related to nav args ends up in a Bundle.
s
Even if the data class is serializable Everything is packed into a bundle?
r
Each nav arg needs to be present in the SavedStateHandle. That’s done via a Bundle directly or indirectly
đŸ™Œ 2