flutter基础结构——顶部appbar和body

class MyApp extends StatelessWidget

 StatelessWidget为不可改变基础组件形式

MaterialApp(home:Scaffold())

为顶部导航栏基础格式

appBar:AppBar()

app顶部导航

body

app当前页面的显示部分

theme

顶部导航栏的主题

return Center()

居中组件

child:

子组件

Container(

    child(),

    height:container高度

    width:container宽度

    decoration:BoxDecoration(

        color:背景颜色

        borderRadius:边框圆角

        border:边框样式

    ),

    padding:内边距,

    margin:外边距,

    alignment:显示位置

)

相当于div

Text

凡是需要显示的文字都需要放到Text中

textDirection:文字显示

textAlign:文字对齐方向

overflow:显示的方式与隐藏的方式

maxLines:显示的最大行数,超出将隐藏

textScaleFactor:字体放大倍数

style:TextStyle(

   fontSize:字体大小,

   fontStyle:字体类型,

   decoration:下划线显示方式

   decorationColor:下划线颜色

   decorationStyle:下划线类型,实线虚线

   letterSpacing:字间距

   color:字体颜色

   fontWeight:字体大小

)

遇到不会写的样式ctrl+左键点进去看,可用样式为忽略掉Geometry的

 

你可能感兴趣的:(flutter,android)