inital add wool modal design
This commit is contained in:
parent
2445de13af
commit
22aca9618e
4 changed files with 44 additions and 5 deletions
19
lib/screens/add_wool_modal.dart
Normal file
19
lib/screens/add_wool_modal.dart
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
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",
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in a new issue