0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

[Kotlin] 'by'に対して has no method 'getValue'

Posted at

事象

以下のようなbyを使ったコード

val state by store.state.collectAsState()

byに対して

Type 'androidx.compose.runtime.State<com.studiomk.ktca.sample.counter.Counter.State>' has no method 'getValue(Nothing?, KProperty0<*>)', so it cannot serve as a delegate

解決方法

import androidx.compose.runtime.getValue

エラーそのままだがbyは実際にはgetValueを呼び出している

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?