stack_board 0.1.2 copy "stack_board: ^0.1.2" to clipboard
stack_board: ^0.1.2 copied to clipboard

A Flutter package of stack board, components that can be stacked and edited for any widget.

Stack Board #

A Flutter package of custom stack board.

pub package GitHub stars GitHub forks CodeFactor FlutterCandies


效果预览 #

预览网址:https://stack.liugl.cn



1.使用 StackBoardController #


import 'package:stack_board/stack_board.dart';

StackBoard(
    controller: _boardController,
    ///添加背景
    background: const ColoredBox(color: Colors.grey),
),

添加自适应文本 #



_boardController.add(
    const AdaptiveText(
        'Flutter Candies',
        tapToEdit: true,
        style: TextStyle(fontWeight: FontWeight.bold),
    ),
);

添加自适应图片 #



_boardController.add(
    StackBoardItem(
        child: Image.network('https://avatars.githubusercontent.com/u/47586449?s=200&v=4'),
    ),
);

添加画板 #



_boardController.add(
    const StackDrawing(
        caseStyle: CaseStyle(
            borderColor: Colors.grey,
            iconColor: Colors.white,
            boxAspectRatio: 1,
        ),
    ),
);

添加自定义Widget #



_boardController.add(
    StackBoardItem(
        child: const Text(
            'Custom Widget',
            style: TextStyle(color: Colors.black),
        ),
        onDel: _onDel,
    ),
);

_onDel
/// 删除拦截
Future<bool> _onDel() async {
    final bool? r = await showDialog<bool>(
        context: context,
        builder: (_) {
            return Center(
                child: SizedBox(
                    width: 400,
                    child: Material(
                        child: Padding(
                            padding: const EdgeInsets.all(20),
                            child: Column(
                                mainAxisSize: MainAxisSize.min,
                                children: <Widget>[
                                    const Padding(
                                        padding: EdgeInsets.only(top: 10, bottom: 60),
                                        child: Text('确认删除?'),
                                    ),
                                    Row(
                                        mainAxisAlignment: MainAxisAlignment.spaceAround,
                                        children: <Widget>[
                                            IconButton(
                                                onPressed: () => Navigator.pop(context, true),
                                                icon: const Icon(Icons.check)),
                                            IconButton(
                                                onPressed: () => Navigator.pop(context, false),
                                                icon: const Icon(Icons.clear)),
                                        ],
                                    ),
                                ],
                            ),
                        ),
                    ),
                ),
            );
        },
    );

    return r ?? false;
}


添加自定义item #



1.继承自StackBoardItem

///自定义类型 Custom item type
class CustomItem extends StackBoardItem {
  const CustomItem({
    required this.color,
    Future<bool> Function()? onDel,
    int? id, // <==== must
  }) : super(
          child: const Text('CustomItem'),
          onDel: onDel,
          id: id, // <==== must
        );

  final Color? color;

  @override // <==== must
  CustomItem copyWith({
    CaseStyle? caseStyle,
    Widget? child,
    int? id,
    Future<bool> Function()? onDel,
    dynamic Function(bool)? onEdit,
    bool? tapToEdit,
    Color? color,
  }) =>
      CustomItem(
        onDel: onDel,
        id: id,
        color: color ?? this.color,
      );
}

2.使用controller添加

import 'dart:math' as math;

...

_boardController.add<CustomItem>(
    CustomItem(
        color: Color((math.Random().nextDouble() * 0xFFFFFF).toInt()),
        onDel: () async => true,
    ),
);

3.使用customBuilder构建

StackBoard(
    controller: _boardController,
        /// 如果使用了继承于StackBoardItem的自定义item
        /// 使用这个接口进行重构
    customBuilder: (StackBoardItem t) {
        if (t is CustomItem) {
            return ItemCase(
                key: Key('StackBoardItem${t.id}'), // <==== must
                isCenter: false,
                onDel: () async => _boardController.remove(t.id),
                onTap: () => _boardController.moveItemToTop(t.id),
                caseStyle: const CaseStyle(
                    borderColor: Colors.grey,
                    iconColor: Colors.white,
                ),
                child: Container(
                    width: 100,
                    height: 100,
                    color: t.color,
                    alignment: Alignment.center,
                    child: const Text(
                        'Custom item',
                        style: TextStyle(color: Colors.white),
                    ),
                ),
            );
        }
    },
)

2.使用ItemCase进行完全自定义 #


Stack(
    children: <Widget>[
        ItemCase(
            isCenter: false,
            child: const Text('Custom case'),
            onDel: () async {},
            onOffsetChanged: (Offset offset) {},
            onSizeChanged: (Size size) {},
        ),
    ],
)
57
likes
120
pub points
78%
popularity

Publisher

verified publisherfluttercandies.com

A Flutter package of stack board, components that can be stacked and edited for any widget.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, flutter_drawing_board, meta

More

Packages that depend on stack_board