在我的一个颤振应用程序中,有一个像下面这样的 FlatButton
FlatButton(
child: Text("Forgot ist ?",
style: TextStyle(color: Color.fromRGBO(107, 106, 106, 1),fontFamily: 'ActoBook'),
textAlign: TextAlign.left
),
materialTapTargetSize: MaterialTapTargetSize.shrinkWrap,
splashColor: Colors.transparent,
highlightColor: Colors.transparent,
shape: RoundedRectangleBorder(
borderRadius: new BorderRadius.circular(0.0),
side: BorderSide(color: Colors.transparent),
),
onPressed: (){
Navigator.pushReplacement(context, new MaterialPageRoute( builder: (context) => LoginPage()),);
},
)
如何使按钮的文本右对齐?目前它以左右相等的空间居中。
目前显示是这样的
+-----------------+
| Button Text |
+-----------------+
我试图让它像
+-----------------+
| Button Text|
+-----------------+