flutter 文字添加外边框
2020-01-14 本文已影响0人
陈晓青_57a8
很简单

body:Stack(
children: [
Text('测试文字',style:TextStyle(fontSize:136,fontWeight: FontWeight.bold,color: Colors.green),),
Text('测试文字',style:TextStyle(fontSize:136,color: Colors.red),),
],
)
很简单
body:Stack(
children: [
Text('测试文字',style:TextStyle(fontSize:136,fontWeight: FontWeight.bold,color: Colors.green),),
Text('测试文字',style:TextStyle(fontSize:136,color: Colors.red),),
],
)