first commit

This commit is contained in:
Leandro 2024-05-17 23:46:30 +02:00
commit 39e38f931f
382 changed files with 520450 additions and 0 deletions

View file

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