StacDocumentation Index
Fetch the complete documentation index at: https://docs.stac.dev/llms.txt
Use this file to discover all available pages before exploring further.
SafeArea allows you to build the Flutter SafeArea widget using JSON.
To know more about the SafeArea widget in Flutter, refer to the official documentation.
Properties
| Property | Type | Description |
|---|---|---|
| child | StacWidget | The child widget of the SafeArea. |
| left | bool | Whether to avoid system intrusions on the left. |
| top | bool | Whether to avoid system intrusions at the top of the screen, typically the system status bar. |
| right | bool | Whether to avoid system intrusions on the right. |
| bottom | bool | Whether to avoid system intrusions on the bottom side of the screen. |
| minimum | StacEdgeInsets | This minimum padding to apply. |
| maintainBottomViewPadding | bool | Specifies whether the SafeArea should maintain the bottom MediaQueryData.viewPadding instead of the bottom MediaQueryData.padding, defaults to false. |
Example
- Dart
- JSON
- Preview