add auth, format
This commit is contained in:
@@ -54,11 +54,7 @@ class PromotionSection extends StatelessWidget {
|
||||
// Section Title with Icon
|
||||
Row(
|
||||
children: [
|
||||
Icon(
|
||||
icon,
|
||||
size: 20,
|
||||
color: AppColors.primaryBlue,
|
||||
),
|
||||
Icon(icon, size: 20, color: AppColors.primaryBlue),
|
||||
const SizedBox(width: 8),
|
||||
Text(
|
||||
title,
|
||||
@@ -84,11 +80,7 @@ class PromotionSection extends StatelessWidget {
|
||||
///
|
||||
/// Standard text styling for section content with proper line height.
|
||||
class PromotionContentText extends StatelessWidget {
|
||||
const PromotionContentText(
|
||||
this.text, {
|
||||
this.isBold = false,
|
||||
super.key,
|
||||
});
|
||||
const PromotionContentText(this.text, {this.isBold = false, super.key});
|
||||
|
||||
final String text;
|
||||
final bool isBold;
|
||||
@@ -114,10 +106,7 @@ class PromotionContentText extends StatelessWidget {
|
||||
///
|
||||
/// Displays a list with custom bullet points.
|
||||
class PromotionBulletList extends StatelessWidget {
|
||||
const PromotionBulletList({
|
||||
required this.items,
|
||||
super.key,
|
||||
});
|
||||
const PromotionBulletList({required this.items, super.key});
|
||||
|
||||
final List<String> items;
|
||||
|
||||
@@ -178,11 +167,7 @@ class PromotionBulletList extends StatelessWidget {
|
||||
///
|
||||
/// Displays contact information with labels and values.
|
||||
class ContactInfo extends StatelessWidget {
|
||||
const ContactInfo({
|
||||
required this.label,
|
||||
required this.value,
|
||||
super.key,
|
||||
});
|
||||
const ContactInfo({required this.label, required this.value, super.key});
|
||||
|
||||
final String label;
|
||||
final String value;
|
||||
|
||||
Reference in New Issue
Block a user