simpleShareButton method

Center simpleShareButton(
  1. BuildContext context
)

Simple Share button for using in note lists

Implementation

Center simpleShareButton(BuildContext context) {
  return Center(
    child: Ink(
      decoration: buttonShapeList,
      child: IconButton(
        icon: const Icon(Icons.share),
        color: Colors.white,
        onPressed: () async {
          // redirect
          navToChildPage(context);
        },
      ),
    ),
  );
}