我需要在文本域中添加阴影
我的代码
TextField(
style: TextStyle(
fontSize: 25.0,
color: Colors.blueAccent,
),
decoration: InputDecoration(
contentPadding: EdgeInsets.fromLTRB(20.0, 15.0, 20.0, 15.0),
prefixIcon: Image.asset('assets/searchIcon@2x.png'),
hintText: "Search services",
border: OutlineInputBorder(
borderSide:
BorderSide(color: Colors.white, width: 32.0),
borderRadius: BorderRadius.circular(25.0),
),
focusedBorder: OutlineInputBorder(
borderSide:
BorderSide(color: Colors.white, width: 32.0),
borderRadius: BorderRadius.circular(25.0))))
我还想改变白色文本的内部颜色
想要实现这样的目标
4条答案
按热度按时间sgtfey8w1#
你可以尝试类似下面这样的东西,或者你可以用
Container
Package 你的TextField
,并使用BoxDecoration
--〉BoxShadow
添加下拉阴影到它:9rnv2umw2#
你可以用Material Package 你的TextField小部件。Material有关于阴影的属性。你可以像这样使用它:
m528fe3b3#
我可以给予你个主意。试试这样,
玩弄
color
和offset
的值,你会得到所需的输出!希望这适合你的情况!
gdx19jrr4#