屬性
- onPressed:按下後觸發的方法。
- elevation:陰影大小值。
- foregrnundColor:前景色。
foregroundColor: Color.fromARGB(255, 255, 255, 255),
- backgroundColor:背景色。
backgroundColor: Color.fromARGB(255, 255, 255, 255),
- floatingActionButtonLocation:設定漂浮按鈕顯示的位置。
//底部中間
floatingActionButtonLocation: FloatingActionButtonLocation.centerDocked
//右下角
floatingActionButtonLocation: FloatingActionButtonLocation.endDocked
//中間偏上
floatingActionButtonLocation: FloatingActionButtonLocation.centerFloat
//底部偏上
floatingActionButtonLocation: FloatingActionButtonLocation.endFloat