Skip to content

Commit

Permalink
apidoc
Browse files Browse the repository at this point in the history
  • Loading branch information
m1ga committed May 4, 2024
1 parent 1473b8b commit f1ebe8a
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions apidoc/Titanium/UI/View.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1957,7 +1957,7 @@ properties:
You can use the setting in combination with `width: Ti.UI.FILL` to set a maximum width.
The view won't extend the `maxWidth` value.
type: Number
since: {android: "12.2.0"}
since: {android: "12.4.0"}
platforms: [android]

- name: maxHeight
Expand All @@ -1966,7 +1966,25 @@ properties:
You can use the setting in combination with `height: Ti.UI.FILL` to set a maximum height.
The view won't extend the `maxHeight` value.
type: Number
since: {android: "12.2.0"}
since: {android: "12.4.0"}
platforms: [android]

- name: minWidth
summary: Minimum width of the View, in platform-specific units.
description: |
You can use the setting in combination with `width: Ti.UI.SIZE` to set a minimum width.
The view won't be smaller than the `minWidth` value.
type: Number
since: {android: "12.4.0"}
platforms: [android]

- name: minHeight
summary: Minimum height of the View, in platform-specific units.
description: |
You can use the setting in combination with `height: Ti.UI.SIZE` to set a minimum height.
The view won't be smaller than the `minHeight` value.
type: Number
since: {android: "12.4.0"}
platforms: [android]

- name: horizontalWrap
Expand Down

0 comments on commit f1ebe8a

Please sign in to comment.