Giter Club home page Giter Club logo

Comments (6)

uouo690 avatar uouo690 commented on June 16, 2024 1

Sorry , forgive me I didn't notice the first change.
It works thanks

from formz.

NoamDev avatar NoamDev commented on June 16, 2024

You should change the

DateTime

to

DateTime?

from formz.

uouo690 avatar uouo690 commented on June 16, 2024

Sorry but which DateTime I should change ??

I edited DateValidationError? validator(DateTime value) to be DateValidationError? validator(DateTime? value) , but it still not accepting null .

The error still the same , The argument type 'Null' can't be assigned to the parameter type 'DateTime'

If there is any other way to pure DateTime please let me know

from formz.

NoamDev avatar NoamDev commented on June 16, 2024
class DateInput extends FormzInput<DateTime?, DateValidationError> {
  const DateInput.pure() : super.pure(null);
  const DateInput.dirty(DateTime value) : super.dirty(value);

  @override
  DateValidationError? validator(DateTime? value) {
    return null;
  }
}

from formz.

uouo690 avatar uouo690 commented on June 16, 2024

Yes , I tried that ,but it gave me this error.

`Error: The value 'null' can't be assigned to the parameter type 'DateTime' because 'DateTime' is not nullable.

  • 'DateTime' is from 'dart:core'.
    const PaymentDateInput.pure() : super.pure(null);
    `

This is part of pubspec.yaml

`version: 1.0.0+1

environment:
sdk: ">=2.12.0 <3.0.0"

dependencies:
flutter:
sdk: flutter
flutter_localizations:
sdk: flutter
cupertino_icons: ^1.0.2
dart_json_mapper: ^2.0.7
dart_json_mapper_flutter: ^2.0.0
datetime_picker_formfield: ^2.0.0
equatable: ^2.0.0
flutter_bloc: ^7.0.0
flutter_secure_storage: ^4.1.0
formz: ^0.4.0
graphs: ^1.0.0
http: ^0.13.1
url_launcher: ^6.0.3

dependency_overrides:
glob: ^2.0.1
reflectable: ^3.0.1
intl: ^0.17.0

dev_dependencies:
flutter_test:
sdk: flutter
build_runner: ^1.11.5`

image

from formz.

NoamDev avatar NoamDev commented on June 16, 2024

Are you serious?
You haven't copied my entire code.
I changed it on two places.

from formz.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.