0 purchases
copy sol
Features #
Custom Copy tool tip implementation
Usage #
CopyWidget(
copyWidget: CopyToolTip(text: "Copy"),
overChildDistance: 26,
onOverlayTap: () {
print("onPressed");
///Add clipboard actions here
},
builder: (context, isOverlayShow) {
return Text(
"click to copy me!",
style: TextStyle(
color: isOverlayShow ? Colors.red : Colors.black,
),
);
},
)
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.