示例 github:flutterlayout https://github.com/LiuC520/flutterlayout
MaterialApp
連載:flutter佈局-1-column 連載:flutter佈局-2-row 連載:flutter佈局-3-center 連載:flutter佈局-4-container 連載:[flutter佈局-5-Matrix4矩陣變換
對話方塊,通常是應用的一些資訊當然我們一般都是需要自定義的,不用flutter自帶的
AboutDialog(
applicationName: '標題',
applicationIcon: Icon(Icons.add),
applicationVersion: '1.0.0', //版本號,預設為空
applicationLegalese: '版權所有:劉成',
children: <Widget>[Text("具體的內容"), Text('具體的佈局')],
),``
複製程式碼
示例所在的位置:github.com/LiuC520/flu…