Unable to install intl: ^0.16.1

Issue

I am working on the Flutter APP. In the pubspec.yaml file I have copied the code for intl.

dependencies:
  flutter:
    sdk: flutter
    intl: ^0.16.1

And save the page it shows me the error as shown below. please suggest.

pub get failed (65;    ╵)

I have follow the step as shown in the official website. https://pub.dev/packages/intl/install

Edit 1

subtitle:Text(
  DateFormat.yMMMD().format(lstTrack[index].dt),
),

It shows me error

Error: Method not found: 'DateFormat.yMMMD'.
                          DateFormat.yMMMD().format(lstTrack[index].dt),

Solution

Just put it like this. You have wrong indentation.

dependencies:
  flutter:
    sdk: flutter
  intl: ^0.16.1

Answered By – Shakib Uz-Zaman

Answer Checked By – Gilberto Lyons (FlutterFixes Admin)

Leave a Reply

Your email address will not be published. Required fields are marked *