Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Flutter Architecture Blueprints | 1,308 | 2 years ago | 30 | mit | Dart | |||||
Flutter Architecture Blueprints is a project that introduces MVVM architecture and project structure approaches to developing Flutter apps. | ||||||||||
Slidy | 780 | 10 months ago | 116 | February 13, 2023 | 4 | apache-2.0 | Dart | |||
CLI package manager and template for Flutter | ||||||||||
Easy_localization | 769 | 5 | 62 | 5 days ago | 95 | September 01, 2023 | 151 | mit | Dart | |
Easy and Fast internationalizing your Flutter Apps | ||||||||||
Flutter.cn | 465 | a day ago | 42 | other | Dart | |||||
Flutter CN docs translation plan, get started from the wiki: https://github.com/cfug/flutter.cn/wiki | ||||||||||
Flutter | 382 | 9 months ago | 4 | mit | Dart | |||||
A boilerplate project for Flutter using RiverPod, Dio, auto_route, Freezed and generated with very_good_cli | ||||||||||
Flutter_translate | 370 | 1 | 2 | 15 days ago | 45 | November 24, 2023 | 3 | mit | Dart | |
Flutter Translate is a fully featured localization / internationalization (i18n) library for Flutter. | ||||||||||
Flutter_rounded_date_picker | 331 | 1 | 6 months ago | 20 | June 07, 2023 | 37 | other | Dart | ||
The Flutter plugin that help you can choose dates and years with rounded calendars and customizable themes. | ||||||||||
Slang | 319 | 5 | 2 days ago | 103 | May 22, 2022 | 14 | mit | Dart | ||
Type-safe i18n for Flutter | ||||||||||
Flutter_getx_template | 245 | 2 months ago | Dart | |||||||
Create flutter project with all needed configuration in two minutes (theme, localization, connect to firebase, FCM, local notifications, safe API call, error handling, animation..etc) | ||||||||||
Flutter_sheet_localization | 239 | 1 | 2 years ago | 8 | June 09, 2021 | 19 | mit | Dart | ||
Generate Flutter localization from a simple online Google Sheets. |
Persian date picker, time picker and localization for flutter.
A simple example on how to display a Persian datepicker.
Import the package
import 'package:persian_flutter/persian_flutter.dart';
Call the picker
RaisedButton(onPressed: () async {
final date = await showPersianDatePicker(
context: context,
initialDate: DateTime.now(),
firstDate: DateTime.now().add(
Duration(days: -1),
),
lastDate: DateTime.now().add(
Duration(days: 90),
),
);
if(date != null)
{
// Do simething.
}
},
child: Text('Show date picker'),
);