Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 329 Bytes

progress.md

File metadata and controls

28 lines (22 loc) · 329 Bytes

プログレスバー

直線

SizedBox(
  width: 300,
  child: LinearProgressIndicator(
    value: 0.5,
  ),
),

円環

SizedBox(
  width: 100,
  height: 100,
  child: CircularProgressIndicator(
    strokeWidth: 10,
  ),
)