Flutter TextField光标底部指针重叠

时间:2019-03-16 16:30:50

标签: android flutter textfield

我正在使用Flutter开发Android,并且遇到了textfield的一种奇怪行为。光标底部指针与我的按钮重叠。如何避免和热改变气泡的颜色?谢谢。

enter image description here

enter image description here

body: Stack(
    children: <Widget>[
      Column(
        crossAxisAlignment: CrossAxisAlignment.stretch,
        children: <Widget>[
          Container(
            height: 200,
            child: ProfileHeader(
              profileViewModel: profileViewModel,
            ),
          ),
          Expanded(child: createEditProfileFields()),
        ],
      ),
      _buildSaveBtn()
    ],
  ),

带有TextFields的ListView和此按钮都位于堆栈中。

0 个答案:

没有答案