22 lines
394 B
Dart
22 lines
394 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class AppForm extends StatelessWidget {
|
|
const AppForm({
|
|
@required this.children,
|
|
@required this.formKey,
|
|
});
|
|
|
|
final GlobalKey<FormState> formKey;
|
|
final List<Widget> children;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Form(
|
|
key: formKey,
|
|
child: ListView(
|
|
children: children,
|
|
),
|
|
);
|
|
}
|
|
}
|