| // Copyright 2025 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #ifndef IOS_CHROME_BROWSER_REMINDER_NOTIFICATIONS_UI_CONSTANTS_H_ |
| #define IOS_CHROME_BROWSER_REMINDER_NOTIFICATIONS_UI_CONSTANTS_H_ |
| |
| #import <UIKit/UIKit.h> |
| |
| // Inset for the table cell separators. |
| extern const CGFloat kReminderNotificationsTableSeparatorInset; |
| |
| // Padding values used in the date picker popover. |
| extern const CGFloat kReminderNotificationsDatePickerPadding; |
| |
| // Standard width for the date/time picker popovers. |
| extern const CGFloat kReminderNotificationsDatePickerWidth; |
| |
| // Height for the date picker when in date mode (calendar style). |
| extern const CGFloat kReminderNotificationsDatePickerHeightDate; |
| |
| // Height for the date picker when in time mode (wheels style). |
| extern const CGFloat kReminderNotificationsDatePickerHeightTime; |
| |
| // Standard content padding used in table cells and layout. |
| extern const CGFloat kReminderNotificationsContentPadding; |
| |
| #endif // IOS_CHROME_BROWSER_REMINDER_NOTIFICATIONS_UI_CONSTANTS_H_ |