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

Is there a way to change width of vertical line that separates first column? #67

Open
ElixirMike opened this issue Oct 22, 2021 · 1 comment
Labels
help wanted Extra attention is needed

Comments

@ElixirMike
Copy link

Right now, the line showing the first column is frozen/sticky only appears when you scroll horizontally. Two questions.

  1. Is there a way to always have that line appear?
  2. Is there a way to customize (size and/or color) of this line?

image

@ElixirMike ElixirMike added the help wanted Extra attention is needed label Oct 22, 2021
@mvitoriapereirac
Copy link

mvitoriapereirac commented May 8, 2024

probably not the best workaround but by putting a BoxDecoration object on the container's foregroundDecoration I managed to create a line next to it that won't disappear and is customizable.

Container(
width: 100,
height: 52,
padding: const EdgeInsets.fromLTRB(5, 0, 0, 0),
alignment: Alignment.center,
foregroundDecoration: BoxDecoration(
border: Border(
right: BorderSide(
color: Colors.grey[200]!,
width: 1.2,
),
),
),

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
help wanted Extra attention is needed
Projects
None yet
Development

No branches or pull requests

2 participants