即使在 AnimatedSwitcher 切换之后,如何在 TextField 上保持键盘打开?

问题描述

我使用 AnimatedSwitcher 在 2 个小部件之间切换:

AnimatedSwitcher(
  duration: const Duration(milliseconds: 200),child:
  toggle
      ? TextField()
      : otherWidget(),

问题是当 AnimatedSwitcher 离开 Textfield 时它会关闭键盘,即使用户已经点击它并打开键盘

小部件切换时如何保持键盘打开?

解决方法

同样的,我也试图在我的应用程序中使用表单来实现这一点,但只要用户按下文本字段,键盘就会关闭。

当我删除 AnimatedSwitcher 小部件的每个子项的关键参数时,一切都按预期工作。

这是代码

AnimatedSwitcher(
      duration: Duration(milliseconds: 1000),child: showFirstContainer
          ? Container(
              height: 200,width: 200,color: Colors.amber,)
          : Container(
              height: 150,width: 300,color: Colors.redAccent,),