问题:
在运行 jetpack compose demo 的时候:
demovar name by remember { mutableStateOf("") }
这一行代码一直报错:
error
解决办法:
倒入
import androidx.compose.runtime.getValue
import androidx.compose.runtime.setValue
即可解决!
在运行 jetpack compose demo 的时候:
demovar name by remember { mutableStateOf("") }
这一行代码一直报错:
倒入
import androidx.compose.runtime.getValue
import androidx.compose.runtime.setValue
即可解决!
本文标题:记一次 jetpack compose 学习中遇到的错误
本文链接:https://www.haomeiwen.com/subject/cbuedltx.html
网友评论