Device Calendar Plugin A cross-platform plugin for modifying calendars on the user’s device. Breaking changes at v4 If you’re upgrading from previous versions, your code will need to be modified (slightly), otherwise it will not run after the update. See Timezone support for more details. There are some changes to event JSON formats at v4. ..
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 ..
Note: We know the Clean calendar is still very new, but don’t be put off by it because it will be well-maintained for a very, very long time. It is in the early stages of development. Additionally, you can contact me via email, discord, or any of the other channels provided on my Github profile ..
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 ..
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 ..
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 ..
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 ..
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( ..
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..
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()); ..
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 ..
Flutter Cupertino Date Text Box A text box with an attached CupertinoDatePicker which opens when the text box is tapped. With this library the following is possible: Text Box / Text Field with multiple features to customize its style (e.g. font, padding, etc.) Date callback can be used to get result date value Quick Usage ..
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 ..
Flutter Heat Map Calendar A Heat Map Calendar based on Github’s contributions chart which can be used to visualize values over time Installing 1. Depend on it Add this to your package’s pubspec.yaml file: 2. Install it You can install packages from the command line: with pub: $ pub get with Flutter: $ flutter pub ..
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 ..
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: ..