hqsoft_module_calendar 0.0.20
hqsoft_module_calendar: ^0.0.20 copied to clipboard
Libarary for hqsoft's calendar.
Use this package as a library
Depend on it
Run this command:
With Flutter:
$ flutter pub add hqsoft_module_calendar
This will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get
):
dependencies:
hqsoft_module_calendar: ^0.0.20
Alternatively, your editor might support flutter pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:hqsoft_module_calendar/base/components/calendar_core.dart';
import 'package:hqsoft_module_calendar/base/components/calendar_header.dart';
import 'package:hqsoft_module_calendar/base/components/calendar_page.dart';
import 'package:hqsoft_module_calendar/base/components/cell_content.dart';
import 'package:hqsoft_module_calendar/base/components/custom_icon_button.dart';
import 'package:hqsoft_module_calendar/base/components/format_button.dart';
import 'package:hqsoft_module_calendar/base/components/index.dart';
import 'package:hqsoft_module_calendar/base/components/table_calendar.dart';
import 'package:hqsoft_module_calendar/base/components/table_calendar_base.dart';
import 'package:hqsoft_module_calendar/base/styles/calendar_builder.dart';
import 'package:hqsoft_module_calendar/base/styles/calendar_style.dart';
import 'package:hqsoft_module_calendar/base/styles/day_of_week_style.dart';
import 'package:hqsoft_module_calendar/base/styles/header_style.dart';
import 'package:hqsoft_module_calendar/base/styles/index.dart';
import 'package:hqsoft_module_calendar/base/utils/utils.dart';
import 'package:hqsoft_module_calendar/configs/screen_config.dart';
import 'package:hqsoft_module_calendar/constants/color.dart';
import 'package:hqsoft_module_calendar/customize/bloc/bloc_calendar.dart';
import 'package:hqsoft_module_calendar/customize/bloc/calendar_bloc.dart';
import 'package:hqsoft_module_calendar/customize/bloc/calendar_event.dart';
import 'package:hqsoft_module_calendar/customize/bloc/calendar_state.dart';
import 'package:hqsoft_module_calendar/customize/bloc/calendar_widget.dart';
import 'package:hqsoft_module_calendar/customize/calendar.dart';
import 'package:hqsoft_module_calendar/customize/components/calendar_type_mode_day/calendar_core_customize.dart';
import 'package:hqsoft_module_calendar/customize/components/calendar_type_mode_day/calendar_page_customize.dart';
import 'package:hqsoft_module_calendar/customize/components/calendar_type_mode_day/cell_content_customize.dart';
import 'package:hqsoft_module_calendar/customize/components/calendar_type_mode_day/index.dart';
import 'package:hqsoft_module_calendar/customize/components/calendar_type_mode_year/index.dart';
import 'package:hqsoft_module_calendar/customize/components/calendar_type_mode_year/year_calendar_core_customize.dart';
import 'package:hqsoft_module_calendar/customize/components/calendar_type_mode_year/year_calendar_page_customize.dart';
import 'package:hqsoft_module_calendar/customize/components/calendar_type_mode_year/year_cell_content_customize.dart';
import 'package:hqsoft_module_calendar/customize/components/header/calendar_header_customize.dart';
import 'package:hqsoft_module_calendar/customize/components/header/custom_icon_button_customize.dart';
import 'package:hqsoft_module_calendar/customize/components/header/custom_switch_customize.dart';
import 'package:hqsoft_module_calendar/customize/components/header/format_button_customize.dart';
import 'package:hqsoft_module_calendar/customize/components/header/index.dart';
import 'package:hqsoft_module_calendar/customize/components/index.dart';
import 'package:hqsoft_module_calendar/customize/components/table_calendar_base_customize.dart';
import 'package:hqsoft_module_calendar/customize/components/table_calendar_customize.dart';
import 'package:hqsoft_module_calendar/customize/index.dart';
import 'package:hqsoft_module_calendar/customize/styles/calendar_builder_customize.dart';
import 'package:hqsoft_module_calendar/customize/styles/calendar_style_customize.dart';
import 'package:hqsoft_module_calendar/customize/styles/day_of_week_style_customize.dart';
import 'package:hqsoft_module_calendar/customize/styles/header_style_customize.dart';
import 'package:hqsoft_module_calendar/customize/styles/index.dart';
import 'package:hqsoft_module_calendar/customize/styles/year_calendar_builder_customize.dart';
import 'package:hqsoft_module_calendar/customize/styles/year_calendar_style_customize.dart';
import 'package:hqsoft_module_calendar/customize/utils/utils.dart';
import 'package:hqsoft_module_calendar/main.dart';