A kit of useful functions and widget to speed up development.
Add this to your package's pubspec.yaml
file:
dependencies:
flutter_essentials_kit:
Just use this import to use the package:
import 'package:flutter_essentials_kit/flutter_essentials_kit.dart';
Plug the localization class in your localizationsDelegates
.
import 'package:flutter_essentials_kit/flutter_essentials_kit.dart';
MaterialApp(
localizationsDelegates: [
// ...
FlutterEssentialsKitLocalizations.delegate,
// ...
);