28 lines
653 B
Dart
28 lines
653 B
Dart
|
|
import 'package:flutter/material.dart';
|
|
|
|
Widget buildInfoItem({
|
|
required IconData icon,
|
|
required String text,
|
|
required Color color,
|
|
}) {
|
|
return Row(
|
|
children: [
|
|
Container(
|
|
padding: EdgeInsets.all(8),
|
|
decoration: BoxDecoration(
|
|
color: color.withAlpha(25),
|
|
borderRadius: BorderRadius.circular(8),
|
|
),
|
|
child: Icon(icon, color: color, size: 20),
|
|
),
|
|
SizedBox(width: 12),
|
|
Expanded(
|
|
child: Text(
|
|
text,
|
|
style: TextStyle(fontSize: 14, color: Colors.grey.shade700),
|
|
),
|
|
),
|
|
],
|
|
);
|
|
} |