Persian_flutter

Persian date picker, time picker and localization for flutter.
Alternatives To Persian_flutter
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Flutter Architecture Blueprints1,308
2 years ago30mitDart
Flutter Architecture Blueprints is a project that introduces MVVM architecture and project structure approaches to developing Flutter apps.
Slidy780
10 months ago116February 13, 20234apache-2.0Dart
CLI package manager and template for Flutter
Easy_localization7695625 days ago95September 01, 2023151mitDart
Easy and Fast internationalizing your Flutter Apps
Flutter.cn465
a day ago42otherDart
Flutter CN docs translation plan, get started from the wiki: https://github.com/cfug/flutter.cn/wiki
Flutter382
9 months ago4mitDart
A boilerplate project for Flutter using RiverPod, Dio, auto_route, Freezed and generated with very_good_cli
Flutter_translate3701215 days ago45November 24, 20233mitDart
Flutter Translate is a fully featured localization / internationalization (i18n) library for Flutter.
Flutter_rounded_date_picker331
16 months ago20June 07, 202337otherDart
The Flutter plugin that help you can choose dates and years with rounded calendars and customizable themes.
Slang31952 days ago103May 22, 202214mitDart
Type-safe i18n for Flutter
Flutter_getx_template245
2 months agoDart
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_localization23912 years ago8June 09, 202119mitDart
Generate Flutter localization from a simple online Google Sheets.
Alternatives To Persian_flutter
Select To Compare


Alternative Project Comparisons
Readme

persian_flutter

pub package

Persian date picker, time picker and localization for flutter.

Getting Started

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'),
);
Popular Flutter Projects
Popular Localization Projects
Popular User Interface Categories

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Dart
Flutter
Date
Time
Localization
Picker
Datepicker
Persian