Skip to content

Commit

Permalink
Fix dark theme checkbox for Cupertino dialogs (#1766)
Browse files Browse the repository at this point in the history
| Before | After |
|--------|--------|
| ![Simulator Screenshot - iPhone 16 - 2024-10-15 at 11 52
37](https://github.com/user-attachments/assets/b25af997-6cef-458b-92dc-d8b3978041bc)
| ![Simulator Screenshot - iPhone 16 - 2024-10-15 at 11 52
31](https://github.com/user-attachments/assets/e51e7be1-272d-481e-bae4-e0019ee8846c)
|
  • Loading branch information
nilsreichardt authored Oct 15, 2024
1 parent 09eee42 commit 281abb6
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,10 @@ class DeleteConfirmationCheckbox extends StatelessWidget {
child: Checkbox(
value: confirm,
onChanged: onChanged,
side: BorderSide(
color: Colors.grey[700]!,
width: 2,
),
),
),
)
Expand Down

0 comments on commit 281abb6

Please sign in to comment.