mzgreen
Row
Texts
<LinearLayout xmlns:android="<http://schemas.android.com/apk/res/android>" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="horizontal" > <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" android:text="Foo" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" android:text="Bar" /> </LinearLayout>
Row(Modifier.fillMaxWidth()) { Text(text = "Foo", Modifier.fillMaxWidth(0.5f)) Text(text = "Bar", Modifier.fillMaxWidth()) }
Filip Wiesner
weight
A modern programming language that makes developers happier.