We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
以下の画像のように読み込みサークルが上にくる (本来ならば画面中央にある方が良い)
おそらく縦に積めるWidget(ColumnやListView)内にCircularProgressIndicatorが存在しているため
Widget
Column
ListView
CircularProgressIndicator
The text was updated successfully, but these errors were encountered:
FutureBuilderが大きさを持たないことが原因かもしれない。
FutureBuilder
FutureBuilderをCenterで囲む
Center
CircularProgressIndicatorを大きさ最大のSizedBoxで囲む
SizedBox
1の方がCenterを余分に増やさなくて済むので良さそう。 2は画面サイズを取得したりして、コストが多少大きくなりそう。
Sorry, something went wrong.
現在確認したところ、issueの指摘箇所が直っていたため、issueを閉じる。
No branches or pull requests
問題点
以下の画像のように読み込みサークルが上にくる
(本来ならば画面中央にある方が良い)
考えられる原因
おそらく縦に積める
Widget
(Column
やListView
)内にCircularProgressIndicator
が存在しているため解決法
Column
を縦中央寄せにするColumn
外でCircularProgressIndicator
を中央寄せで表示するThe text was updated successfully, but these errors were encountered: