Category : Calendar

Calentre 📅💰 Welcome to Calentre, the open-source alternative to Calendly! 🌟 Manage your appointments, get paid, and enjoy the scheduling experience. Table of Contents 📚 Description Features Technology Stack Architecture Getting Started Usage Description 📝 Calentre is your go-to scheduling solution, offering a delightful way to book meetings and collect payments! 🚀 Whether you’re a ..

Read more

if you have any issue or any suggestion you could contact a Calendar , DatePicker and Date Converter For Persian Date(Jalali/Shamsi date) with holidays Modified and Completed Version of jalali_calendar package Usage Import this line in Flutter pubspec.yaml jalali_table_calendar: ^1.0.2 To Use Calendar Or DatePicker , Import this line to your dart file import ‘package:jalali_table_calendar/jalali_table_calendar.dart’; To Use ..

Read more

About: A Flutter package for using Jalali (Shamsi, Solar, Persian or Jalaali) calendar. You can convert, format and manipulate Jalali and Gregorian (Miladi) dates. This is a pure dart package and Algorithm is based on popular JavaScript library jalaali-js with more than 20k monthly downloads. This package has a lot of unit tests with high test coverage ..

Read more

Day Picker A Flutter widget library that helps us to select days in a week. Screenshot Usage Add day_picker to your pubspec.yaml file. import the package: import ‘package:day_picker/day_picker.dart’; Constructor for the day_picker is given below. SelectWeekDays({ @required this.onSelect, this.backgroundColor, this.daysFillColor, this.daysBorderColor, this.selectedDayTextColor, this.unSelectedDayTextColor, this.border = true, this.boxDecoration, this.padding = 8.0, Key key, }) : assert(onSelect != null), super(key: key); Example here ..

Read more

A persian (farsi,shamsi) datetime picker for flutter, inspired by material datetime picker. Persian datetime picker inspired by material datetime picker and based on shamsi_date. Usage Add it to your pubspec.yaml file: dependencies: persian_datetime_picker: version In your library add the following import: import ‘package:persian_datetime_picker/persian_datetime_picker.dart’; Here is many examples how to use: /////////////////////////Example 1//////////////////////////// Jalali picked = await ..

Read more

flutter_calendar A calendar widget for Flutter Apps. Borrowed DateTime utility functions from the Tzolkin Calendar web element. Usage Add to your pubspec dependencies: flutter_calendar: ^0.0.1 Render the map with one of three options: 1. Default, Material Design new Calendar() 2. An Expandable Map new Calendar( isExpandable: true; ) 3. Customize It (Standard or Expandable) new Calendar( ..

Read more

CircularDateTimePicker A new Flutter package CircularDateTimePicker Created by suryadevsingh. Demo Contributing Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. Download CircularDateTimePicker source code on GitHub https://github.com/suryadevsingh/CircularDateTimePicker FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. flutterapp..

Read more

inline_calender An inline calender package inspired by outlook app. It also supports Jalali/Shamsi calender. Uses theme and locale of context to localize and change color of widgets. Usage Add the module to your project pubspec.yaml then install it using “flutter packages get` … dependencies: … inline_calender: ^0.1.0 … Example: import ‘package:flutter/material.dart’; import ‘package:inline_calender/inline_calender.dart’; void main() => runApp(MyApp()); ..

Read more

Nepali Date Picker Material and Cupertino Style Date Picker with Bikram Sambat(Nepali) Calendar Support. Supports Android, iOS and Fuchsia. Available in Nepali and English Languages. Nepali Date Picker returns data in NepaliDateTime type, which is included in nepali_utils package. NOTE: Use version 3.2.0+2 to support versions prior to Flutter 1.14.x Click here to launch WEB DEMO Salient Features Material DatePicker Cupertino DatePicker Adaptive ..

Read more

flutter_calendar_carousel Calendar widget for flutter that is swipeable horizontally. This widget can help you build your own calendar widget highly customizable. Now you can even add your icon for each event. New Feature Check out great feature customDayBuilder work done by maxgmer . Rectangular style Circular style No border Marked Dates Custom Icon Events Getting Started For help getting ..

Read more

Flutter Rounded Date Picker The Flutter plugin that help you can choose dates and years with rounded calendars and customizable themes. Installing Add dependencies in pubspec.yaml file. Add 2 things in it including flutter_localizations dependencies: flutter_localizations: sdk: flutter flutter_rounded_date_picker: 1.0.4 Importing import packages into your dart. import ‘package:flutter_localizations/flutter_localizations.dart’; import ‘package:flutter_rounded_date_picker/rounded_picker.dart’; Initialize localizations Add localization delegates ..

Read more

flutter_calendar_week A calendar view by week IOS | Android: Web: Use: CalendarWeek( height: 80, minDate: DateTime.now().add( Duration(days: -365), ), maxDate: DateTime.now().add( Duration(days: 365), ), onDatePressed: (DateTime datetime) { setState(() { _selectedDate = datetime; }); }, onDateLongPressed: (DateTime datetime) { setState(() { _selectedDate = datetime; }); }, dayOfWeekStyle: TextStyle(color: Colors.blue, fontWeight: FontWeight.w600), dayOfWeekAlignment: FractionalOffset.bottomCenter, dateStyle: TextStyle(color: ..

Read more