Add view and logik

This commit is contained in:
2026-04-01 14:28:38 +02:00
parent bf8fd37e51
commit 122ae48754
30 changed files with 1926 additions and 176 deletions

View File

@@ -0,0 +1,28 @@
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),
),
),
],
);
}