Description
Building with Xcode 26 causes layout issues in the bolus and carb entry views. The unit text (U for bolus, g for carbs) does not lay out next to the amount field/text as expected.
Steps to Reproduce
- Build with Xcode 26
- Open the Bolus entry view or Carb entry view
- Observe the unit label is not positioned next to the amount
Not the non-rendered emojis in screenshots area to be an Xcode 26.3.1 bug


Expected Behavior
The unit label should appear inline/next to the amount field.
Affected Views
BolusInputView — bolus amount and recommended bolus rows
CarbInputView — carb amount row
Fix
Wrapping the amount and unit label in an HStack resolves the layout. See PR #68.
Description
Building with Xcode 26 causes layout issues in the bolus and carb entry views. The unit text (
Ufor bolus,gfor carbs) does not lay out next to the amount field/text as expected.Steps to Reproduce
Not the non-rendered emojis in screenshots area to be an Xcode 26.3.1 bug
Expected Behavior
The unit label should appear inline/next to the amount field.
Affected Views
BolusInputView— bolus amount and recommended bolus rowsCarbInputView— carb amount rowFix
Wrapping the amount and unit label in an
HStackresolves the layout. See PR #68.