Increase weight slider precision to ~1 lb increments
Changed divisions from 170 to 374, giving approximately 0.45 kg per step (~1 lb precision) instead of 1 kg per step (~2.2 lbs). Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
8bb1cc1e61
commit
4ac148b638
1 changed files with 1 additions and 1 deletions
|
|
@ -355,7 +355,7 @@ class _BaselineScreenState extends State<BaselineScreen> {
|
|||
value: _weightKg,
|
||||
min: 30,
|
||||
max: 200,
|
||||
divisions: 170,
|
||||
divisions: 374,
|
||||
onChanged: widget.readOnly
|
||||
? null
|
||||
: (value) => setState(() => _weightKg = value),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue