Hi everyone, quick question for which I can't find...
# android-architecture
t
Hi everyone, quick question for which I can't find the answer on Google: When using Navigation API, and SafeArgs:
val args: SomeFragmentArgs by navArgs()
Does the 
args
 field keep its values after the activity gets killed by the system and recreated? In other words: does the Bundle sent to the Fragment survive? Cheers
z
considering it relies on
setArguments
under the hood, yes
👍 1