We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
With canCloseOutsideBounds: false. This issue is fixed but I still need CloseOutsideBounds effect. @AbdullahChauhan
canCloseOutsideBounds: false
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, ), ), ], ),
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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
The text was updated successfully, but these errors were encountered: