首页 > 解决方案 > 如何隐藏 TextField 的底部边缘?

问题描述

如何隐藏 TextField 的底部边缘?

 TextField(
     decoration: InputDecoration(
     hintText: '(201) 555-0123',
 ),

在此处输入图像描述

标签: flutter

解决方案


您可以使用以下*border参数TextField

TextField(
  decoration: InputDecoration(
    hintText: '(201) 555-0123',
    // Hides the border when the TextField is enabled
    enabledBorder: OutlineInputBorder(
      borderSide: const BorderSide(color: Colors.transparent),
    ),
    // Hides the border when you click the TextField
    focusedBorder: OutlineInputBorder(
      borderSide: const BorderSide(color: Colors.transparent),
    ),
    // Hides the border when the TextField is disabled
    disabledBorder: OutlineInputBorder(
      borderSide: const BorderSide(color: Colors.transparent),
    ),
  ),
)

推荐阅读