1. 首页
  2. 数据库
  3. 其它
  4. Flutter Text内容居中显示

Flutter Text内容居中显示

上传者: 2021-01-16 19:54:33上传 PDF文件 22.39KB 热度 13次
通过设置textAlign属性的值为TextAlign.center可以让Text的内容居中 class _MyHomePageState extends State { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text(widget.title), ), body: Row( children: [ Expanded( chil
用户评论