Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: remove action container space in mobile #135

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,17 @@ class BlockComponentActionContainer extends StatelessWidget {

@override
Widget build(BuildContext context) {
return Container(
alignment: Alignment.centerRight,
width: 50,
height: 25, // TODO: magic number, change it to the height of the block
color: Colors
.transparent, // have to set the color to transparent to make the MouseRegion work
child: !showActions ? const SizedBox.shrink() : actionBuilder(context),
);
return showActions
? Container(
alignment: Alignment.centerRight,
width: 50,
height:
25, // TODO: magic number, change it to the height of the block
color: Colors
.transparent, // have to set the color to transparent to make the MouseRegion work
child: actionBuilder(context),
)
: const SizedBox.shrink();
}
}

Expand Down