ToolsViewBar constructor

const ToolsViewBar({
  1. Key? key,
  2. required List<Tool> tools,
  3. double spacing = 4,
  4. double horizontalMargins = 1,
  5. bool isCompactView = false,
  6. ToolsAlignment alignment = ToolsAlignment.center,
  7. bool float = false,
  8. double? floatOffset,
})

Implementation

const ToolsViewBar({
  super.key,
  required this.tools,
  this.spacing = 4,
  this.horizontalMargins = 1,
  this.isCompactView = false,
  this.alignment = ToolsAlignment.center,
  this.float = false,
  this.floatOffset,
});