horizontal_calendar 0.0.3 copy "horizontal_calendar: ^0.0.3" to clipboard
horizontal_calendar: ^0.0.3 copied to clipboard

outdated

A flutter plugin to show horizontal view of calendar with date picker.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:horizontal_calendar/horizontal_calendar.dart';


void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Horizontal Calendar Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: MyHomePage(title: 'Horizontal Calendar Demo'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key key, this.title}) : super(key: key);

  final String title;

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: HorizontalCalendar(
        date: DateTime.now().add(Duration(days: 1)),
        textColor: Colors.black45,
        backgroundColor: Colors.white,
        selectedColor: Colors.blue,
        onDateSelected: (date) => print(
          date.toString(),
        ),
      ),
    );
  }
}
16
likes
0
pub points
89%
popularity

Publisher

verified publisherbeetechsolution.com

A flutter plugin to show horizontal view of calendar with date picker.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, intl, nepali_utils

More

Packages that depend on horizontal_calendar