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

canCloseOutsideBounds overlap with listItemBuilder #89

Open
Punlork opened this issue Sep 4, 2024 · 0 comments
Open

canCloseOutsideBounds overlap with listItemBuilder #89

Punlork opened this issue Sep 4, 2024 · 0 comments

Comments

@Punlork
Copy link

Punlork commented Sep 4, 2024

With canCloseOutsideBounds: false. This issue is fixed but I still need CloseOutsideBounds effect.
@AbdullahChauhan

Screen.Recording.2024-09-04.at.3.28.05.in.the.afternoon.mov
listItemBuilder: (context, item, isSelected, onItemSelect) => Row(
        mainAxisAlignment: MainAxisAlignment.spaceBetween,
        children: <Widget>[
          Checkbox(
            value: isSelected,
            onChanged: (_) => onItemSelect(),
          ),
          const Gap(4),
          Expanded(
            child: Text(
              item.title,
              style: context.bodyLarge(
                color: isSelected ? Theme.of(context).colorScheme.primary : null,
                weight: isSelected ? FontWeight.w600 : null,
              ),
              // maxLines: 2,
              overflow: TextOverflow.ellipsis,
            ),
          ),
        ],
      ),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant