You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have linked to the correct App State documentation, removed the reference to the Intercom article, and merged the Auto Size content into the relevant configuration documentation.
-**Auto Size:** This automatically adjusts the font size of the text to fit the space
98
-
available within the widget boundaries. It ensures that the text remains legible without overflowing its container, making it especially handy for responsive designs where the display may vary across different devices.
97
+
-**Auto Size**
98
+
99
+
The `Auto Size` option allows the `Text` widget to automatically reduce its font size to fit within its parent widget. This ensures that the text remains legible without overflowing its container, making it especially handy for responsive designs where the display may vary across different devices.
100
+
101
+
- **Configure Parent Widget Dimensions**
102
+
103
+
To enable `Auto Size`, the `Text` widget must be inside a widget that has both defined width and height. Without these constraints, the font size cannot be adjusted automatically.
104
+
105
+
1. Select the `Text` widget.
106
+
2. Check its parent widget.
107
+
3. Ensure both width and height are explicitly defined.
108
+
109
+
:::warning
110
+
Without defined dimensions, the `Auto Size` feature may not behave as expected.
111
+
:::
112
+
113
+
- **Behavior Scenarios**
114
+
115
+
The following examples illustrate how `Auto Size` behaves under different container configurations:
116
+
117
+
- Container with width set to `infinity` and height set to `100px`, `Auto Size` disabled. The text may overflow beyond the container.
118
+
- Container with width set to `infinity` and height set to `100px`, `Auto Size` enabled. The font size adjusts to fit the defined height.
119
+
- Container with width set to `30%` and no height defined, `Auto Size` enabled. The feature has no visible effect due to missing height constraint.
120
+
- Container with width set to `70%` and height set to `50px`, `Auto Size` enabled. The text is resized to the minimum allowed font size to remain within the container.
Use `Auto Size` with percentage-based dimensions for better responsiveness. For example, set the container width to `30%` and enable `Auto Size` to allow the text size to adjust as the screen size changes.
126
+
:::
127
+
128
+
:::note
129
+
The `Auto Size` feature has a minimum font size threshold. If the container becomes too small, text may clip or overflow when resizing is no longer possible.
Copy file name to clipboardExpand all lines: docs/troubleshooting/migrate-widget-issues/emoji-size-on-ios-devices.md
-3Lines changed: 0 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,3 @@ On iOS devices, emojis can appear oversized when rendered inside text widgets, d
37
37
38
38

39
39
40
-
:::info
41
-
For more details and troubleshooting, see the **[official FlutterFlow guide on emoji rendering](https://intercom.help/flutterflow/en/articles/7044370-text-emoji-is-very-large-on-some-ios-devices)**.
Copy file name to clipboardExpand all lines: docs/troubleshooting/migrate-widget-issues/scroll_to_action_on_page_load.md
+1-5Lines changed: 1 addition & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,8 +30,4 @@ When a `Scroll To Action` fails to trigger during a page load, it is often becau
30
30
31
31
:::tip
32
32
Combining a delay with animation prevents the scroll action from executing before the widget appears, creating a smoother transition.
33
-
:::
34
-
35
-
:::info[Additional Resources]
36
-
Refer to **[Scroll To Action Failing on Page Load](https://intercom.help/flutterflow/en/articles/7047006-scroll-to-action-is-not-working-when-used-on-page-load)** for more troubleshooting help.
0 commit comments