gsform 0.3.6 gsform: ^0.3.6 copied to clipboard
GSForm helps to creating forms in Flutter by removing the boilerplate needed to build a form, validate fields, react to changes and collect final user input.
import 'package:flutter/material.dart';
import 'package:gsform/gs_form/core/form_style.dart';
import 'package:gsform/gs_form/enums/field_status.dart';
import 'package:gsform/gs_form/model/data_model/date_data_model.dart';
import 'package:gsform/gs_form/model/data_model/radio_data_model.dart';
import 'package:gsform/gs_form/model/data_model/spinner_data_model.dart';
import 'package:gsform/gs_form/widget/field.dart';
import 'package:gsform/gs_form/widget/form.dart';
import 'package:gsform/gs_form/widget/section.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
debugShowCheckedModeBanner: false,
themeMode: ThemeMode.light,
locale: const Locale('en', 'US'),
supportedLocales: const [Locale('en', 'US'), Locale('fa', 'IR')],
theme: ThemeData(
brightness: Brightness.light,
primaryColor: Colors.blue,
textTheme: null,
colorScheme: null,
),
darkTheme: ThemeData(brightness: Brightness.dark, colorScheme: null),
home: MainTestPage(),
);
}
}
// ignore: must_be_immutable
class MainTestPage extends StatelessWidget {
MainTestPage({Key? key}) : super(key: key);
late GSForm form;
@override
Widget build(BuildContext context) {
return SafeArea(
child: Scaffold(
appBar: AppBar(
title: const Text('GSForm example'),
),
body: Center(
child: Padding(
padding: const EdgeInsets.only(top: 0.0),
child: Column(
children: [
ElevatedButton(
onPressed: () {
Navigator.pushAndRemoveUntil<dynamic>(
context,
MaterialPageRoute<dynamic>(builder: (BuildContext context) => MultiSectionForm()),
(route) => true, //if you want to disable back feature set to false
);
},
child: const Text('Multi Section form'),
),
ElevatedButton(
onPressed: () {
Navigator.pushAndRemoveUntil<dynamic>(
context,
MaterialPageRoute<dynamic>(builder: (BuildContext context) => SingleSectionForm()),
(route) => true);
},
child: const Text('Single Section form'),
),
],
),
),
),
),
);
}
}
// ignore: must_be_immutable
class SingleSectionForm extends StatefulWidget {
SingleSectionForm({Key? key}) : super(key: key);
String? value;
late GSFieldStatusEnum status;
@override
State<SingleSectionForm> createState() => _SingleSectionFormState();
}
class _SingleSectionFormState extends State<SingleSectionForm> {
late GSForm form;
int id = 0;
@override
void initState() {
widget.value = 'dfhbdkfhbdasffffteryuiei577y ';
widget.status = GSFieldStatusEnum.normal;
super.initState();
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Single section Page'),
),
body: Padding(
padding: const EdgeInsets.all(0.0),
child: Column(
children: [
Expanded(
child: SingleChildScrollView(
child: Padding(
padding: const EdgeInsets.all(20.0),
child: form = GSForm.singleSection(
style: GSFormStyle(titleStyle: const TextStyle(color: Colors.black87, fontSize: 16.0)),
context,
fields: [
GSField.email(
tag: 'email',
title: 'login',
weight: 12,
required: true,
maxLength: 100,
errorMessage: 'erro',
value: 'dastras.saeed@gmail.com',
),
GSField.spinner(
tag: 'customer_type',
required: false,
weight: 12,
showTitle: false,
onChange: (model) {
id = model!.id;
setState(() {});
},
items: [
SpinnerDataModel(
name: 'm1',
id: 0,
),
SpinnerDataModel(
name: 'm2',
id: 1,
),
SpinnerDataModel(
name: 'm3',
id: 2,
),
],
),
GSField.spinner(
tag: 'customer_type',
required: false,
weight: 6,
title: 'Gender',
onChange: (model) {},
items: [
SpinnerDataModel(name: '3', id: 0, isSelected: id == 0),
SpinnerDataModel(
name: '4',
id: 1,
isSelected: id == 1,
),
SpinnerDataModel(name: '8', id: 2, isSelected: id == 2),
],
),
]),
),
),
),
Padding(
padding: const EdgeInsets.all(16.0),
child: Row(
children: [
Expanded(
flex: 1,
child: ElevatedButton(
onPressed: () {
bool isValid = form.isValid();
Map<String, dynamic> map = form.onSubmit();
debugPrint(map.toString());
debugPrint(isValid.toString());
setState(() {});
},
child: const Text('Submit'),
),
),
],
),
),
],
),
),
);
}
}
// ignore: must_be_immutable
class MultiSectionForm extends StatelessWidget {
MultiSectionForm({Key? key}) : super(key: key);
late GSForm form;
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Multi section screen'),
),
body: Padding(
padding: const EdgeInsets.only(left: 12.0, right: 12, top: 24),
child: Column(
children: [
Expanded(
child: SingleChildScrollView(
child: form = GSForm.multiSection(context, sections: [
GSSection(sectionTitle: 'User information', fields: [
GSField.text(
value: 'Some text',
tag: 'name',
title: 'Name',
minLine: 1,
maxLine: 1,
),
GSField.text(
value: 'Some text',
tag: 'name',
title: 'Name',
minLine: 1,
maxLine: 1,
),
GSField.radioGroup(
hint: 'Radio Group',
tag: 'radio',
showScrollBar: true,
scrollBarColor: Colors.red,
scrollDirection: Axis.horizontal,
height: 50,
scrollable: true,
required: true,
weight: 12,
title: 'Size number',
searchable: false,
searchHint: 'Search...',
searchIcon: const Icon(Icons.search),
searchBoxDecoration: BoxDecoration(
border: Border.all(
color: Colors.blue,
width: 1,
),
borderRadius: BorderRadius.circular(8),
),
items: [
RadioDataModel(title: 'lorem', isSelected: false),
RadioDataModel(title: 'ipsum', isSelected: false),
],
callBack: (data) {},
),
GSField.datePicker(
calendarType: GSCalendarType.gregorian,
tag: 'licenceExpireDate',
title: 'DatePicker',
weight: 12,
required: false,
initialDate: GSDate(day: 10, month: 5, year: 2023),
errorMessage: 'please enter a name',
),
GSField.text(
value: 'سعید دسترس3',
tag: 'lastName',
title: 'Last name',
minLine: 1,
maxLine: 1,
weight: 12,
required: true,
),
GSField.spinner(
tag: 'customer_type',
required: false,
weight: 6,
title: 'Gender',
value: SpinnerDataModel(
name: 'woman',
id: 2,
),
onChange: (model) {},
items: [
SpinnerDataModel(
name: 'man',
id: 1,
),
SpinnerDataModel(
name: 'woman',
id: 2,
),
SpinnerDataModel(
name: 'woman',
id: 2,
),
],
),
GSField.mobile(
tag: 'mobile',
title: 'Phone number',
maxLength: 11,
helpMessage: '9357814747',
weight: 6,
required: false,
errorMessage: 'some error',
),
]),
GSSection(
sectionTitle: 'Market information',
fields: [
GSField.text(
tag: 'name',
title: 'Market name',
minLine: 1,
maxLine: 1,
weight: 12,
required: false,
errorMessage: 'please enter a name',
),
GSField.textPlain(
hint: 'sds',
tag: 'lastName',
title: 'Market address',
maxLine: 4,
maxLength: 233,
showCounter: false,
weight: 12,
prefixWidget: const Icon(Icons.location_city, color: Colors.blue),
required: true,
),
GSField.spinner(
tag: 'customer_type',
required: false,
weight: 6,
title: 'Market type',
items: [
SpinnerDataModel(
name: 'Super market',
id: 1,
),
SpinnerDataModel(
name: 'woman',
id: 2,
),
],
),
GSField.mobile(
tag: 'mobile',
title: 'Telephone',
maxLength: 11,
helpMessage: '9357814747',
weight: 6,
required: false,
errorMessage: 'some error',
),
],
),
]),
),
),
Padding(
padding: const EdgeInsets.all(16.0),
child: Row(
children: [
Expanded(
flex: 1,
child: ElevatedButton(
onPressed: () {
bool isValid = form.isValid();
Map<String, dynamic> map = form.onSubmit();
debugPrint(isValid.toString());
debugPrint(map.toString());
},
child: const Text('Submit'),
),
),
],
),
),
],
),
),
);
}
}