aurcache/frontend/lib/models/quick_info_data.dart
lukas-heiligenbrunner 600c2057fe add endpoint for general stats
load build data to graph
redesign top info tiles
place add button on header
folder restructure
2023-12-30 00:45:33 +01:00

16 lines
288 B
Dart

import 'package:flutter/material.dart';
class QuickInfoData {
const QuickInfoData({
Key? key,
required this.color,
required this.icon,
required this.title,
required this.subtitle,
});
final Color color;
final IconData icon;
final String title, subtitle;
}