FTXUI/examples
Arthur Sonzogni b3ba747d82
Feature: Slider in any directions. (#468)
Add the `SliderOption` option supporting:
```cpp
{
  Ref<T> value;
  ConstRef<T> min = T(0);
  ConstRef<T> max = T(100);
  ConstRef<T> increment = (max() - min()) / 20;
  GaugeDirection direction = GaugeDirection::Right;
  Color color_active = Color::White;
  Color color_inactive = Color::GrayDark;
};
```

In particular, this supports multiple direction. This resolves:
https://github.com/ArthurSonzogni/FTXUI/issues/467

This one do not support adding a label. The old constructors can still
be used to have a label.
2022-08-30 18:52:33 +02:00
..
component Feature: Slider in any directions. (#468) 2022-08-30 18:52:33 +02:00
dom Remove NXXM. Execute IWYU. (#397) 2022-05-08 08:44:38 +02:00
html Update examples to use std::string. (#182) 2021-08-09 00:27:37 +02:00
CMakeLists.txt Feature: Slider in any directions. (#468) 2022-08-30 18:52:33 +02:00
index.html Add support for emscripten screen resize. (#463) 2022-08-21 23:04:32 +02:00
run_webassembly.py Refactor examples list in CMake (#170) 2021-07-31 18:32:48 +02:00
sw.js Add COOP/COEP for worker.js file. 2022-07-09 19:58:11 +02:00