Код: Выделить всё
class DashboardActivity : AppCompatActivity(),BarcodeScanningReceiver.BarcodeScanningReceiverInterface {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContent {
AppTheme {
LoadItemRankScreen() //composable function
}
}
}
override fun barcodeData(data: String) {
// I need to pass this data param whenever it receives here
}}
Подробнее здесь: https://stackoverflow.com/questions/787 ... e-function