rrule_generator 0.6.0 rrule_generator: ^0.6.0 copied to clipboard
RRuleGenerator is a widget for generating recurrence rules, such as described in the iCalendar RFC
rrule_generator #
RRuleGenerator is a widget for generating recurrence rules, such as described in the iCalendar RFC
This widget is based on the rrule package.
The widget is actively used in the Calendar Clock app.
Installation #
Add this to your pubspec.yaml
dependencies:
rrule_generator: ^0.6.0
How to use #
Add the widget to your app like this:
RRuleGenerator(
config: RRuleGeneratorConfig(),
initialRRule: 'RRULE:FREQ=MONTHLY;INTERVAL=1;BYDAY=TU;BYSETPOS=1;COUNT=9',
textDelegate: const EnglishRRuleTextDelegate(),
onChange: (String newValue) => print(newValue),
);
The current version of the widget has 18 text delegates that you can already use:
- English (default)
- Dutch
- Turkish
- French
- Danish
- Chinese
- Finnish
- Estonian
- Bulgarian
- German
- Hungarian
- Spanish
- Slovenian
- Italian
- Indonesian
- Czech
- Swedish
- Lithuanian You can easily create your own ones as well!