buildTextSelectionToolbar method

Widget buildTextSelectionToolbar(
  1. Offset anchorAbove,
  2. Offset anchorBelow
)

Implementation

Widget buildTextSelectionToolbar(Offset anchorAbove, Offset anchorBelow) {
  return TextSelectionToolbar(
      anchorAbove: anchorAbove,
      anchorBelow: anchorBelow,
      children: [
        FittedBox(
          // widthFactor: 0.6,
          child: Padding(
            padding: const EdgeInsets.all(8.0),
            child: Column(
              children: [
                Row(
                  children: [
                    ...buildMenuItems(),
                  ],
                ),
                // Row(
                //   children: [
                //     Text("test"),
                //     Text("test"),
                //   ],
                // ),
              ],
            ),
          ),
        )
      ]);
}