mirror of
https://git.mirrors.martin98.com/https://github.com/luc-github/ESP3D.git
synced 2025-08-05 08:10:42 +08:00

### Maintenance page * Add add tab color for mobile view * Add spellcheck off / autocorect off in input * Add disconnect button when authenticate enabled * Add Invalid user or password message when authentication failed ### Board support * Add ESP32 S2 support * Add ESP32 S3 support * Add ESP32 C3 support ### ESP commands * Add command 701 to control GCODE streaming * Remove command 901 as duplicate * Update command 420 to add more details * Use text as default output * All json on all commands for formated output ### Core * Add benchmak function to check transfer speed (for test only-not production) * Merge code for ESP3DLib support * Add better printer display support (M117 / Serial TFT) * Use ESP32 analogWrite instead of emulated one ### Modules * Display * Refactor code * Remove SPI ILI 9341 / 9488 support as not suitable * Add ST7789 support (135x240 / 240x240) * Filesystem * Bug fixes due to esp core updates * Better SD sharing mecanism * Better global FS management * FTP * Add SD sharing support * Better global FS management * GCODE Host * Add basic support for macro files * Add ESP command support * Use not blocking method to stream commands / handle response * Notifications * Add IFTTT notification service * Add WebUI notification * Add ESP3D display notification * WebDav * Add SD sharing support * Add bug fix from https://github.com/d-a-v/ESPWebDAV * Better global FS management * Websocket * Add function to handle zombies connections * WiFi * Fix connection to AP sometime fail * Fix low signal not diplayed in ESP420 even connected * Add AP Setup mode ### Libraries * Update SDFat-2.0.6 to 2.1.2 * Update ESP32SSDP 1.1.1 to 1.2.0 * Update TFT_eSPI-1.4.11 to 2.4.61 * Update arduinoWebSockets-2.3.5 to 2.3.6 * Update esp8266-oled-ssd1306-4.0.0 to 4.3.0 * Remove lvgl support ### Tools * Add I2C scanner script * Add python script to simulate/stress printer serial communication ### PlatformIO * Use latest 4.4.0 Espressif32 release (ESP32-arduino core 2.0.3) * Add fix for Flash more than 4MB * Add Esp32 S2/S3/C3 env * Add ESP32-ST7789 / esp32-TTGO_T_Display env
124 lines
5.3 KiB
Markdown
124 lines
5.3 KiB
Markdown
```eval_rst
|
||
.. include:: /header.rst
|
||
:github_url: |github_link_base|/layouts/flex.md
|
||
```
|
||
|
||
# Flex
|
||
|
||
## Overview
|
||
|
||
The Flexbox (or Flex for short) is a subset of [CSS Flexbox](https://css-tricks.com/snippets/css/a-guide-to-flexbox/).
|
||
|
||
It can arrange items into rows or columns (tracks), handle wrapping, adjust the spacing between the items and tracks, handle *grow* to make the item(s) fill the remaining space with respect to min/max width and height.
|
||
|
||
To make an object flex container call `lv_obj_set_layout(obj, LV_LAYOUT_FLEX)`.
|
||
|
||
Note that the flex layout feature of LVGL needs to be globally enabled with `LV_USE_FLEX` in `lv_conf.h`.
|
||
|
||
## Terms
|
||
- tracks: the rows or columns
|
||
- main direction: row or column, the direction in which the items are placed
|
||
- cross direction: perpendicular to the main direction
|
||
- wrap: if there is no more space in the track a new track is started
|
||
- grow: if set on an item it will grow to fill the remaining space on the track.
|
||
The available space will be distributed among items respective to their grow value (larger value means more space)
|
||
- gap: the space between the rows and columns or the items on a track
|
||
|
||
## Simple interface
|
||
|
||
With the following functions you can set a Flex layout on any parent.
|
||
|
||
### Flex flow
|
||
|
||
`lv_obj_set_flex_flow(obj, flex_flow)`
|
||
|
||
The possible values for `flex_flow` are:
|
||
- `LV_FLEX_FLOW_ROW` Place the children in a row without wrapping
|
||
- `LV_FLEX_FLOW_COLUMN` Place the children in a column without wrapping
|
||
- `LV_FLEX_FLOW_ROW_WRAP` Place the children in a row with wrapping
|
||
- `LV_FLEX_FLOW_COLUMN_WRAP` Place the children in a column with wrapping
|
||
- `LV_FLEX_FLOW_ROW_REVERSE` Place the children in a row without wrapping but in reversed order
|
||
- `LV_FLEX_FLOW_COLUMN_REVERSE` Place the children in a column without wrapping but in reversed order
|
||
- `LV_FLEX_FLOW_ROW_WRAP_REVERSE` Place the children in a row with wrapping but in reversed order
|
||
- `LV_FLEX_FLOW_COLUMN_WRAP_REVERSE` Place the children in a column with wrapping but in reversed order
|
||
|
||
### Flex align
|
||
To manage the placement of the children use `lv_obj_set_flex_align(obj, main_place, cross_place, track_cross_place)`
|
||
|
||
- `main_place` determines how to distribute the items in their track on the main axis. E.g. flush the items to the right on `LV_FLEX_FLOW_ROW_WRAP`. (It's called `justify-content` in CSS)
|
||
- `cross_place` determines how to distribute the items in their track on the cross axis. E.g. if the items have different height place them to the bottom of the track. (It's called `align-items` in CSS)
|
||
- `track_cross_place` determines how to distribute the tracks (It's called `align-content` in CSS)
|
||
|
||
The possible values are:
|
||
- `LV_FLEX_ALIGN_START` means left on a horizontally and top vertically. (default)
|
||
- `LV_FLEX_ALIGN_END` means right on a horizontally and bottom vertically
|
||
- `LV_FLEX_ALIGN_CENTER` simply center
|
||
- `LV_FLEX_ALIGN_SPACE_EVENLY` items are distributed so that the spacing between any two items (and the space to the edges) is equal. Does not apply to `track_cross_place`.
|
||
- `LV_FLEX_ALIGN_SPACE_AROUND` items are evenly distributed in the track with equal space around them.
|
||
Note that visually the spaces aren’t equal, since all the items have equal space on both sides.
|
||
The first item will have one unit of space against the container edge, but two units of space between the next item because that next item has its own spacing that applies. Not applies to `track_cross_place`.
|
||
- `LV_FLEX_ALIGN_SPACE_BETWEEN` items are evenly distributed in the track: first item is on the start line, last item on the end line. Not applies to `track_cross_place`.
|
||
|
||
|
||
### Flex grow
|
||
|
||
Flex grow can be used to make one or more children fill the available space on the track. When more children have grow parameters, the available space will be distributed proportionally to the grow values.
|
||
For example, there is 400 px remaining space and 4 objects with grow:
|
||
- `A` with grow = 1
|
||
- `B` with grow = 1
|
||
- `C` with grow = 2
|
||
|
||
`A` and `B` will have 100 px size, and `C` will have 200 px size.
|
||
|
||
Flex grow can be set on a child with `lv_obj_set_flex_grow(child, value)`. `value` needs to be > 1 or 0 to disable grow on the child.
|
||
|
||
|
||
## Style interface
|
||
|
||
All the Flex-related values are style properties under the hood and you can use them similarly to any other style property. The following flex related style properties exist:
|
||
|
||
- `FLEX_FLOW`
|
||
- `FLEX_MAIN_PLACE`
|
||
- `FLEX_CROSS_PLACE`
|
||
- `FLEX_TRACK_PLACE`
|
||
- `FLEX_GROW`
|
||
|
||
### Internal padding
|
||
|
||
To modify the minimum space flexbox inserts between objects, the following properties can be set on the flex container style:
|
||
|
||
- `pad_row` Sets the padding between the rows.
|
||
|
||
- `pad_column` Sets the padding between the columns.
|
||
|
||
These can for example be used if you don't want any padding between your objects: `lv_style_set_pad_column(&row_container_style,0)`
|
||
|
||
## Other features
|
||
|
||
### RTL
|
||
If the base direction of the container is set the `LV_BASE_DIR_RTL` the meaning of `LV_FLEX_ALIGN_START` and `LV_FLEX_ALIGN_END` is swapped on `ROW` layouts. I.e. `START` will mean right.
|
||
|
||
The items on `ROW` layouts, and tracks of `COLUMN` layouts will be placed from right to left.
|
||
|
||
### New track
|
||
|
||
You can force Flex to put an item into a new line with `lv_obj_add_flag(child, LV_OBJ_FLAG_FLEX_IN_NEW_TRACK)`.
|
||
|
||
|
||
## Example
|
||
|
||
```eval_rst
|
||
|
||
.. include:: ../../examples/layouts/flex/index.rst
|
||
|
||
```
|
||
|
||
## API
|
||
|
||
```eval_rst
|
||
|
||
.. doxygenfile:: lv_flex.h
|
||
:project: lvgl
|
||
|
||
```
|