Flutter
一碗单炒饭
As is a tale, so is life.
展开
-
修改flutter ElevatedButton的样式(ElevatedButton.styleFrom/ButtonStyle)
有两种方式可以实现ElevatedButton的样式的修改使用 ElevatedButton.styleFrom ElevatedButton.styleFrom({ Color primary, // set the background color Color onPrimary, Color onSurface, Color shadowColor, double elevatio原创 2021-06-03 09:40:28 · 9171 阅读 · 6 评论 -
Flutter中ElevatedButton控件提示No Directionality widget found
ElevatedButton出现No Directionality widget found两种解决方式:使用Scaffold包裹:void main() { runApp(MaterialApp( home: Scaffold( body: ElevatedButton( child: Text("Click", style: TextStyle(fontSize: 22)), onPressed:(){ print("Click原创 2021-05-31 13:49:54 · 769 阅读 · 0 评论