Please tell me what's wrong ```<TextView an...
# compose
v
Please tell me what's wrong
Copy code
<TextView
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    app:layout_constraintStart_toEndOf="@+id/image"/>
s
You forgot
constrainsAs(image)
on Image modifier
🙏 1
1