Is your feature request related to a problem? Please describe.
It can be hard to see where to tap to change selections, especially in dark mode on an iOS 18 phone.
Describe the solution you'd like
Modify the code to make the open circles easier to see.
Describe alternatives you've considered
N/A
Additional context
This is a one line change to
https://github.com/LoopKit/LoopKit/blob/3ce43ded238a776f7/LoopKitUI/Views/CheckmarkListItem.swift#L77
The graphics below are from left to right:
- current code of
.stroke()
- option 1, code of
.stroke(Color.accentColor, lineWidth: 1)
- option 2, code of
.stroke(Color.accentColor, lineWidth: 2)
Dark Mode: Silence Pod

Light Mode: Insulin Selection

From those screens, I think lineWidth of 1 is best.
Here are a few more screens (in dark mode) with the lineWidth: 1 modification.

Is your feature request related to a problem? Please describe.
It can be hard to see where to tap to change selections, especially in dark mode on an iOS 18 phone.
Describe the solution you'd like
Modify the code to make the open circles easier to see.
Describe alternatives you've considered
N/A
Additional context
This is a one line change to
https://github.com/LoopKit/LoopKit/blob/3ce43ded238a776f7/LoopKitUI/Views/CheckmarkListItem.swift#L77
The graphics below are from left to right:
.stroke().stroke(Color.accentColor, lineWidth: 1).stroke(Color.accentColor, lineWidth: 2)Dark Mode: Silence Pod
Light Mode: Insulin Selection
From those screens, I think lineWidth of 1 is best.
Here are a few more screens (in dark mode) with the
lineWidth: 1modification.