datetime_picker_field_platform

Creator: coderz1093

Last updated:

Add to Cart

Description:

datetime picker field platform

datetime_picker_field_platform #



A flutter widget that allows you to display a datepicker with some features of a textFormField. This widget works on both Android and iOS.
Installing #
Add the following to your pubspec.yaml file:
dependencies:
datetime_picker_field_platform: ^0.0.1
copied to clipboard

Demo #



How to use #
class MyHomePage extends StatefulWidget {
const MyHomePage({Key? key, required this.title}) : super(key: key);

final String title;

@override
State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
final GlobalKey<FormState> _formKey = GlobalKey<FormState>();

@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Form(
key: _formKey,
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 16.0),
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
DateTimeFieldPlatform(
mode: DateMode.date,
decoration: const InputDecoration(
hintText: 'Select date',
),
maximumDate: DateTime.now().add(const Duration(days: 720)),
minimumDate: DateTime.utc(2009),
validator: (String? value) {
if (value!.isEmpty) {
return 'Este campo es requerido';
}
return null;
},
),
const SizedBox(height: 40),
DateTimeFieldPlatform(
mode: DateMode.time,
decoration: const InputDecoration(
hintText: 'Select time',
),
maximumDate: DateTime.now().add(const Duration(hours: 2)),
minimumDate: DateTime.now().subtract(const Duration(hours: 2)),
),
const SizedBox(height: 40),
ElevatedButton(
onPressed: _validateFields,
child: const Text('Validar'),
),
],
),
),
),
);
}

void _validateFields() {
_formKey.currentState!.validate();
}
}
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.