标签: flutter padding flutter-layout
我已经构建了一个简单的应用来学习颤动。我想将平面按钮移到屏幕的最右侧。
我似乎无法使用padding属性,我也不知道为什么。
new FlatButton( onPressed: () => debugPrint("pressed"), child: new Text("DONATE", style: new TextStyle( fontSize: 16, color: Colors.green[400] ) ) )
答案 0 :(得分:0)
您是否已检查了颤振布局,here
plus填充属性用于在按钮内部移动按钮操纵margin属性。 希望有帮助。
答案 1 :(得分:0)
尝试一下:
Row( mainAxisAlignment: MainAxisAlignment.end, children: <Widget>[ FlatButton( onPressed: () => debugPrint("pressed"), child: new Text("DONATE", style: new TextStyle( fontSize: 16, color: Colors.green[400] ) ) ), ], ),