mirror of
https://github.com/Iconica-Development/flutter_form_wizard.git
synced 2025-05-19 19:03:47 +02:00
Fix: fix formatting
This commit is contained in:
parent
f40657c57e
commit
ff0463120c
8 changed files with 9 additions and 18 deletions
|
@ -27,8 +27,7 @@ class FlutterFormInputCarousel extends FlutterFormInputWidget<int> {
|
|||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
String Function(String, {List<String>? params}) _ =
|
||||
getTranslator(context);
|
||||
String Function(String, {List<String>? params}) _ = getTranslator(context);
|
||||
|
||||
super.registerController(context);
|
||||
|
||||
|
|
|
@ -40,8 +40,7 @@ class FlutterFormInputDateTime extends FlutterFormInputWidget<String> {
|
|||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
String Function(String, {List<String>? params}) _ =
|
||||
getTranslator(context);
|
||||
String Function(String, {List<String>? params}) _ = getTranslator(context);
|
||||
super.registerController(context);
|
||||
|
||||
return input.FlutterFormInputDateTime(
|
||||
|
|
|
@ -25,8 +25,7 @@ class FlutterFormInputEmail extends FlutterFormInputWidget<String> {
|
|||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
String Function(String, {List<String>? params}) _ =
|
||||
getTranslator(context);
|
||||
String Function(String, {List<String>? params}) _ = getTranslator(context);
|
||||
|
||||
super.registerController(context);
|
||||
|
||||
|
|
|
@ -28,8 +28,7 @@ class FlutterFormInputNumberPicker extends FlutterFormInputWidget<int> {
|
|||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
String Function(String, {List<String>? params}) _ =
|
||||
getTranslator(context);
|
||||
String Function(String, {List<String>? params}) _ = getTranslator(context);
|
||||
|
||||
super.registerController(context);
|
||||
|
||||
|
|
|
@ -25,8 +25,7 @@ class FlutterFormInputPassword extends FlutterFormInputWidget<String> {
|
|||
Widget build(BuildContext context) {
|
||||
super.registerController(context);
|
||||
|
||||
String Function(String, {List<String>? params}) _ =
|
||||
getTranslator(context);
|
||||
String Function(String, {List<String>? params}) _ = getTranslator(context);
|
||||
|
||||
return input.FlutterFormInputPassword(
|
||||
initialValue: controller.value,
|
||||
|
|
|
@ -39,8 +39,7 @@ class FlutterFormInputPlainText extends FlutterFormInputWidget<String> {
|
|||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
String Function(String, {List<String>? params}) _ =
|
||||
getTranslator(context);
|
||||
String Function(String, {List<String>? params}) _ = getTranslator(context);
|
||||
|
||||
super.registerController(context);
|
||||
|
||||
|
@ -93,8 +92,7 @@ class FlutterFormInputMultiLine extends StatelessWidget {
|
|||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
String Function(String, {List<String>? params}) _ =
|
||||
getTranslator(context);
|
||||
String Function(String, {List<String>? params}) _ = getTranslator(context);
|
||||
|
||||
return input.FlutterFormInputMultiLine(
|
||||
label: label,
|
||||
|
|
|
@ -30,8 +30,7 @@ class FlutterFormInputSlider extends FlutterFormInputWidget<double> {
|
|||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
String Function(String, {List<String>? params}) _ =
|
||||
getTranslator(context);
|
||||
String Function(String, {List<String>? params}) _ = getTranslator(context);
|
||||
|
||||
super.registerController(context);
|
||||
|
||||
|
|
|
@ -23,8 +23,7 @@ class FlutterFormInputSwitch extends FlutterFormInputWidget<bool> {
|
|||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
String Function(String, {List<String>? params}) _ =
|
||||
getTranslator(context);
|
||||
String Function(String, {List<String>? params}) _ = getTranslator(context);
|
||||
|
||||
super.registerController(context);
|
||||
|
||||
|
|
Loading…
Reference in a new issue