` with aspect-ratio
- - `aspectRatio`: Number (width/height)
- - `child`: Single widget
-
-### Text Elements
-- **text.dart** โ `
` or ``
- - `data`: String content
- - `style`: TextStyle
- - `fontSize`: Number
- - `fontWeight`: FontWeight
- - `color`: Color
- - `fontFamily`: String
- - `decoration`: TextDecoration
- - `letterSpacing`: Number
- - `height`: Number (line height)
-
-- **selectable_text.dart** โ `` (user-select: text)
- - Same as Text + selection enabled
-
-### Simple Interactive
-- **tooltip.dart** โ `` overlay on hover
- - `message`: String
- - `child`: Widget
-
-- **circle_avatar.dart** โ `
` circular
- - `radius`: Number
- - `backgroundColor`: Color
- - `backgroundImage`: Image
- - `child`: Widget (icon/text)
-
----
-
-## Level 3: Complex Single Elements (3+ Properties)
-
-### Container
-- **container.dart** โ `
`
- - `width`: Number
- - `height`: Number
- - `padding`: EdgeInsets
- - `margin`: EdgeInsets
- - `decoration`: BoxDecoration
- - `color`: Color
- - `border`: Border
- - `borderRadius`: BorderRadius
- - `boxShadow`: List
- - `gradient`: Gradient
- - `image`: DecorationImage
- - `alignment`: Alignment
- - `transform`: Matrix4
- - `child`: Single widget
-
-### Card
-- **card.dart** โ `` with elevation/shadow
- - `elevation`: Number
- - `color`: Color
- - `shadowColor`: Color
- - `shape`: ShapeBorder (borderRadius)
- - `margin`: EdgeInsets
- - `clipBehavior`: Clip
- - `child`: Widget
-
-### Buttons
-- **elevated_button.dart** โ `