resizable_widget 1.0.1 copy "resizable_widget: ^1.0.1" to clipboard
resizable_widget: ^1.0.1 copied to clipboard

outdated

Users can resize inner widgets by dragging.

resizable_widget #

ResizableWidget Holds resizable widgets as children.

Users can resize inner widgets by dragging.

Example #

example

import 'package:resizable_widget/resizable_widget.dart';

class MyPage extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: ResizableWidget(
        isColumnChildren: false,
        separatorColor: Colors.white12,
        separatorSize: 4,
        children: [
          Container(color: Colors.greenAccent),
          ResizableWidget(
            isColumnChildren: true,
            separatorColor: Colors.blue,
            separatorSize: 10,
            children: [
              Container(color: Colors.greenAccent),
              Container(color: Colors.yellowAccent),
              Container(color: Colors.redAccent),
            ],
          ),
          Container(color: Colors.redAccent),
        ],
      ),
    );
  }
}
156
likes
0
pub points
91%
popularity

Publisher

verified publisheribako-piyo.com

Users can resize inner widgets by dragging.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on resizable_widget