1. 程式人生 > 其它 >導航欄-1

導航欄-1

import'package:flutter/material.dart';
classAppBarDemoPageextendsStatelessWidget{ constAppBarDemoPage({Key?key}):super(key:key);
@override Widgetbuild(BuildContextcontext){ returnScaffold( appBar:AppBar( title:Text("AppBarDemoPage"), //backgroundColor:Colors.red,//背景顏色 centerTitle:true,//文字居中 leading:IconButton( icon:Icon(Icons.menu), onPressed:(){ print('menu'); }, ), actions:[ IconButton( icon:Icon(Icons.search), onPressed:(){ print('search'); }, ), IconButton( icon:Icon(Icons.settings), onPressed:(){ print('settings'); }, ), ], ), body:Text('登入頁面'), ); } } 我是Eric,手機號是13522679763