使用flutter的Scaffold的bottomNavigationBar時發現,底部會多了沒適配的小橫條區域
image.png
和上方的顏色不搭
解決
在跑app之前設置setSystemUIOverlayStyle
import 'package:flutter/services.dart';
void main() {
SystemChrome.setSystemUIOverlayStyle(
const SystemUiOverlayStyle(
systemNavigationBarColor: Colors.transparent, // 設置系統導航欄顏色
),
);
runApp(const MyApp());
}