flutter_input_library/example/lib/main.dart
2023-01-16 15:21:47 +01:00

156 lines
4.8 KiB
Dart

import 'package:flutter/material.dart';
import 'package:flutter_input_library/flutter_input_library.dart';
import 'package:intl/intl.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({super.key, required this.title});
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
var formKey = GlobalKey<FormState>();
@override
void initState() {
super.initState();
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Center(
child: Form(
key: formKey,
child: SingleChildScrollView(
child: Column(
children: [
Container(height: 10),
const Text('FlutterFormInputSwitch'),
FlutterFormInputSwitch(
initialValue: true,
onChanged: (v) {
debugPrint('Switch changed to $v');
},
),
Container(height: 50),
const Text('FlutterFormInputDateTime'),
FlutterFormInputDateTime(
decoration: const InputDecoration(label: Text('test')),
autovalidateMode: AutovalidateMode.always,
validator: (p0) {
if (p0 == null || p0.isEmpty) return null;
return DateFormat('dd/MMMM/yyyy HH:mm')
.parse(p0)
.isAfter(DateTime.now())
? null
: 'Date must be in the future';
},
inputType: FlutterFormDateTimeType.dateTime,
dateFormat: DateFormat('dd/MMMM/yyyy HH:mm'),
onChanged: (v) {
debugPrint('Date changed to $v');
},
),
Container(height: 50),
const Text('FlutterFormInputNumberPicker'),
FlutterFormInputNumberPicker(
onChanged: (v) {
debugPrint('Number changed to $v');
},
),
Container(height: 50),
const Text('FlutterFormInputSlider'),
FlutterFormInputSlider(
onChanged: (v) {
debugPrint('Slider changed to $v');
},
),
Container(height: 50),
const Text('FlutterFormInputCarousel'),
SizedBox(
height: 150,
width: 150,
child: FlutterFormInputCarousel(
onChanged: (v) {
debugPrint('Carousel changed to $v');
},
items: [
Container(
height: 100,
width: 100,
color: Colors.red,
),
Container(
height: 100,
width: 100,
color: Colors.green,
),
Container(
height: 100,
width: 100,
color: Colors.blue,
)
],
),
),
Container(height: 50),
const Text('FlutterFormInputPlainText'),
FlutterFormInputPlainText(
onChanged: (v) {
debugPrint('Plain text changed to $v');
},
),
Container(height: 50),
const Text('FlutterFormInputMultiLine'),
SizedBox(
height: 200,
width: 300,
child: FlutterFormInputMultiLine(
onChanged: (v) {
debugPrint('Multi line changed to $v');
},
),
),
Container(height: 50),
const Text('FlutterFormInputPassword'),
FlutterFormInputPassword(
onChanged: (v) {
debugPrint('Password changed to $v');
},
),
Container(height: 50),
],
),
),
),
),
);
}
}