Stephen Vinouze
Stephen Vinouze
@fansmc this should work. ``` class DartTestActivity : AppCompatActivity() { @InjectExtra lateinit var mTitle: String override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) Dart.inject(this) Toast.makeText(this, mTitle, Toast.LENGTH_SHORT).show() } } ```
@beyerss This library works well with Kotlin and as a section in the README that refers to it. From what I see I'd say you didn't apply the `kapt` plugin...
Indeed this supports fonts from asset folder. Using fonts from font folder was not possible when this library was created. This should be changed in order to support this
Can't this be achieved already with the [Maps Utils Library](https://github.com/googlemaps/android-maps-utils)? Since that's where you get the `ClusterManager`. I haven't tried yet but I naively thought Map Compose would interact with...
Hmm I see, the `ClusterManager` needs a map as an argument. Never mind my previous comment then 😅
Those VM have no reason to be shared in that case (I actually had that use case last time I reached out to you and successfully got it working). I...
``` So, if you're saying that adding B as a nested graph causes this behaviour (I didn't know either), it must mean that it does that because now B destination...
Hmm I still couldn't make it work 🤔 I've put the side effect just after declaring the DestinationsNavHost. And also tried to defer the effect within the B screen but...
Didn't do much but glad it helped spotted a hidden issue 😅 Thxs for the workaround. To be fair I first thought about this but I wasn't sure if printing...
Alright, got some time to log this out. I did this flow: 1. Land on A 2. Go to B 3. Go to C 4. Go to B 5. Go...