iOS13把UIViewController的UIModalPresentationStyle屬性默認為UIModalPresentationPageSheet,效果變成下面這樣:

image.png
如果想恢復之前占滿全屏的樣式需要到iOS端代碼里改一下樣式,在flutter項目中找到 Runner.xcworkspace 文件,用Xcode打開

image.png
在Xcode左下角直接搜索 bsimagepicker.swift

image.png
點進去找到文件最下面一個方法,添加代碼:
imagePicker.modalPresentationStyle = UIModalPresentationStyle.fullScreen

image.png
回到Flutter項目重新運行就可以了

image.png