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

[开关组件] 开关ison是否可以实现双向绑定 #265

Closed
kle-wang opened this issue Jul 31, 2024 · 6 comments
Closed

[开关组件] 开关ison是否可以实现双向绑定 #265

kle-wang opened this issue Jul 31, 2024 · 6 comments

Comments

@kle-wang
Copy link

tdesign-flutter 版本

0.1.5

重现链接

No response

重现步骤

在封装的组件内 使用了get的rxint类型做动态数据,用户若点击按钮本身,按钮将会从开启状态直接变回关闭状态,即使被绑定的bool没有发生变化,但是不会从关闭状态被开启。 是否有办法实现按钮与value的双向绑定?
例如

                Obx(() => SelectControllerItem(
                      label: "lang".tr,
                      isCheck:
                          c.ldacIndex.value == 0 && c.connectState.value == '2',
                      fun: () {
                        if (c.ldacIndex.value == 0) {
                            c.ldacIndex.value = 1;
                          },cancelFunc: (){
                            c.ldacIndex.value = 0;
                          });
                        } else {
                          message.confirmCancelBox(context, "ldac-mul-mulOn".tr,
                            c.ldacIndex.value = 0;
                          },cancelFunc: (){
                              c.ldacIndex.value = 1;
                              });
                        }
                      },
                    ))

期望结果

双向绑定

实际结果

没有实现双向绑定

Flutter版本

3.22.3

设备与机型信息

android ios

系统版本

android 13 ios 18

补充说明

No response

Copy link
Contributor

👋 @kle-wang,感谢给 TDesign 提出了 issue。
请根据 issue 模版确保背景信息的完善,我们将调查并尽快回复你。

Copy link
Contributor

这个 Issue 被标记为了过时 stale ,因为它已经持续 30 天没有任何活动了。删除 stale 标签或评论,否则将在 7 天内关闭。

@github-actions github-actions bot added the Stale label Aug 30, 2024
@Luozf12345 Luozf12345 removed the Stale label Sep 3, 2024
Copy link
Contributor

github-actions bot commented Oct 4, 2024

这个 Issue 被标记为了过时 stale ,因为它已经持续 30 天没有任何活动了。删除 stale 标签或评论,否则将在 7 天内关闭。

@github-actions github-actions bot added the Stale label Oct 4, 2024
@Luozf12345 Luozf12345 removed the Stale label Oct 9, 2024
Copy link
Contributor

github-actions bot commented Nov 9, 2024

这个 Issue 被标记为了过时 stale ,因为它已经持续 30 天没有任何活动了。删除 stale 标签或评论,否则将在 7 天内关闭。

@github-actions github-actions bot added the Stale label Nov 9, 2024
@Luozf12345 Luozf12345 removed the Stale label Nov 15, 2024
Copy link
Contributor

这个 Issue 被标记为了过时 stale ,因为它已经持续 30 天没有任何活动了。删除 stale 标签或评论,否则将在 7 天内关闭。

@Luozf12345
Copy link
Collaborator

如果点击的时候,不希望改变TDSwitch的状态,可以在onChanged中返回true,然后外部数据变更时再去setState()

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

2 participants