This repository has been archived on 2025-06-12. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Temperaturdecke/lib/widgets/overviewCard.dart
2024-05-17 23:46:30 +02:00

10 lines
211 B
Dart

import 'package:flutter/material.dart';
class Overviewcard extends StatelessWidget {
const Overviewcard({super.key});
@override
Widget build(BuildContext context) {
return const Placeholder();
}
}