1
0
Fork 0

Add step2

This commit is contained in:
Florian RICHER (MrDev023) 2022-03-30 22:39:49 +02:00
parent ef58387144
commit 155d97c9df
7 changed files with 266 additions and 4 deletions

View file

@ -0,0 +1,25 @@
import 'package:flutter/material.dart';
class RowInput extends StatelessWidget {
const RowInput({Key? key, required this.label, required this.controller})
: super(key: key);
final String label;
final TextEditingController controller;
@override
Widget build(BuildContext context) {
return SizedBox(
width: 400,
height: 70,
child: Expanded(
child: TextField(
controller: controller,
decoration: InputDecoration(
hintText: label,
),
),
),
);
}
}