<Pass text from MainActivity to child TextView in ...
# stackoverflow
u
Pass text from MainActivity to child TextView in Kotlin I haven't worked with Android Studio and Kotlin before, but the task of passing data from Flutter via native came up. I need to pass text from MainActivity where I get text via MethodChannel to AndroidTextView and then pass it to Flutter. I can't figure out how to pass the text, I tried to do it with intent, but it seems I am doing something wrong. MainActivity class MainActivity : FlutterActivity() { private val androidViewId = "INTEGRATION_ANDROID" private val methodChannel =...