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/cards/overview_card.dart
2024-05-17 23:46:30 +02:00

13 lines
272 B
Dart

import 'package:flutter/material.dart';
class Overviewcard extends StatelessWidget {
Overviewcard(this.temperatur, {super.key});
Color mainColor = Colors.red;
int temperatur = 15;
@override
Widget build(BuildContext context) {
return Placeholder();
}
}