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/screens/add_wool_modal.dart
2024-05-19 22:50:43 +02:00

19 lines
406 B
Dart

import 'package:flutter/material.dart';
import 'package:temperaturdecke/widgets/modal_wrapper.dart';
class AddWoolModal extends StatelessWidget {
const AddWoolModal({super.key});
@override
Widget build(BuildContext context) {
return ModalWrapper(
Column(
children: [
TextField(),
TextField(),
],
),
title: "Wolle hinzufügen",
);
}
}