码迷,mamicode.com
首页 > 移动开发 > 详细

Flutter -- iOS -- Center

时间:2019-11-27 12:39:02      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:rri   ima   bsp   body   class   img   demo   font   dem   

 1 import package:flutter/material.dart;
 2 
 3 void main() => runApp(
 4   new MaterialApp(
 5     title: Center居中布局,
 6     home: new LayoutDemo(),
 7   ),
 8 );
 9 
10 class LayoutDemo extends StatelessWidget{
11   @override
12   Widget build(BuildContext context) {
13     // TODO: implement build
14     return  new Scaffold(
15       appBar: new AppBar(
16         title: new Text(iOS 导航栏),
17       ),
18       body: new Center(
19         child: new Text(
20           Hello Flutter,
21           style: TextStyle(
22             fontSize: 36.0,
23           ),
24         ),
25       ),
26     );
27   }
28 }

技术图片

 

Flutter -- iOS -- Center

标签:rri   ima   bsp   body   class   img   demo   font   dem   

原文地址:https://www.cnblogs.com/tom2015010203/p/11941096.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!