ResizableContainerBox

A customizable draggable and resizable container widget with image, color, and text support. Built for Flutter.

Features

  • Drag to move
  • Resize with handle
  • Custom background color
  • Load image from local file
  • Editable text child
  • Properties callback for external state handling

Installation

Add to pubspec.yaml:

dependencies:
  resizable_container_box: ^0.0.1

Usage

ResizableContainerBox(
  key: UniqueKey(),
  counter: 0,
  color: Colors.blue,
  propertiesCallback: (props) {
    print(props);
  },
  removeCallback: (key) {
    // handle remove
  },
)