1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-01 06:50:26 +02:00

Fix spelling mistake (#7836)

spelling correction
This commit is contained in:
Hermes
2024-12-05 10:14:55 -05:00
committed by GitHub
parent 7daf1e213b
commit f3584f8af6

View File

@@ -1,6 +1,6 @@
# LinearLayout
**LinearLayout** is a view group that aligns all children in a single directioni, vertically or horizontally. You can specify the layout direction with the `android:orientation` attribute.
**LinearLayout** is a view group that aligns all children in a single direction, vertically or horizontally. You can specify the layout direction with the `android:orientation` attribute.
**LinearLayout** was commonly used in earlier Android development, but with the introduction of ConstraintLayout, its less frequently used in modern apps.