location_geocoder 1.0.4 location_geocoder: ^1.0.4 copied to clipboard
flutter package to convert latitude/longitude to address and from address to latitude/longitude.
calendar_builder #
Fully customizable calendar package for flutter. Also supports for disabling dates, highlighting dates and displaying events inside calendar.
Features #
- Fully customisable widgets
- Add Events
- Highlight dates
- Disable dates
- Starting week can be changed
- ✅ MonthBuilder
- [TODO] DayBuilder
- [TODO] WeekBuilder
Getting started #
TODO: List prerequisites and provide or point to information on how to start using the package.
Month Builder | Customised Month Builder |
---|---|
Custom Month Builder | Month Builder with callbacks |
---|---|
Installation #
In your pubspec.yaml
file within your Flutter Project:
dependencies:
calendar_builder: <latest_version>
How to use #
import 'package:calendar_builder/calendar_builder.dart';
import 'package:flutter/material.dart';
class MonthBuilderScreen extends StatelessWidget {
const MonthBuilderScreen({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
body: SafeArea(
child: Column(
children: [
Expanded(
child: CbMonthBuilder(
cbConfig: CbConfig(
startDate: DateTime(2020),
endDate: DateTime(2026),
selectedDate: DateTime(2021,3,4),
selectedYear: DateTime(2021),
),
),
)
],
),
),
);
}
}
Customised Month Builder #
Code | Output |
|
Customised Month Builder #
Code | Output |
|
TODO: Include short and useful examples for package users. Add longer examples
to /example
folder.
const like = 'sample';
Additional information #
TODO: Tell users more about the package: where to find more information, how to contribute to the package, how to file issues, what response they can expect from the package authors, and more.