0

So I want to change the intl Date format into a french format (fr_FR). I googled and I found this line but I don't know where to put it in the code:

import 'package:intl/date_symbol_data_local.dart';
initializeDateFormatting('fr_FR', null).then((_) => runMyCode());
Mikelenjilo
  • 171
  • 1
  • 12

1 Answers1

0

make your widget statefull and add the line of code in the initState() method

@override   void initState() {
    super.initState();
    initializeDateFormatting('fr_FR', null); }

package https://pub.dev/packages/intl

intl: ^0.17.0
Mashood .H
  • 926
  • 6
  • 16