nepali_calendar_axios 0.0.5 copy "nepali_calendar_axios: ^0.0.5" to clipboard
nepali_calendar_axios: ^0.0.5 copied to clipboard

A Flutter package for creating and displaying beautiful Nepali calendars.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:nepali_calendar_axios/nepali_calendar_axios.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

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

  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  TextEditingController startcontroller = TextEditingController();
  TextEditingController endDateController = TextEditingController();
  TextEditingController startDateController = TextEditingController();

  String? date;
  int? selectedDateId;
  int? endselectedDateId;
  String url = "https://demo79.nivid.app/";

  @override
  void initState() {
    // TODO: implement initState
    Get.put(CalendarController(this.url));

    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: [
            Calendar(
              baseUrl: url,
              dateController: startcontroller,
              themeColor: Color(0xFF29ABE2),
              calendarLblText: "From Date",
              border: const OutlineInputBorder(
                  borderRadius: BorderRadius.all(Radius.circular(12))),
              onSelectedDateId: (DateId) {
                setState(() {
                  selectedDateId = DateId;
                });
                update();
              },
            ),
            SizedBox(height: 20.0),
            Row(
              mainAxisAlignment: MainAxisAlignment.spaceAround,
              children: <Widget>[
                SizedBox(
                    width: 150,
                    child: Calendar(
                      baseUrl: url,
                      themeColor: Color(0xFF29ABE2),
                      dateController: startDateController,
                      border: InputBorder.none,
                      filled: true,
                      fillColor: Colors.blueGrey[50],
                      hintText: "Start Date",
                      calendarLblText: "From Date",
                      //Icons.Calenbar_month is not appear, use others
                      calendarIcon: Icons.calendar_month,
                      style: TextStyle(fontSize: 14),
                      hintStyle: TextStyle(color: Colors.blueGrey[400]),
                      labelStyle: TextStyle(
                        color: Colors.blueGrey[400],
                      ),
                      onSelectedDateId: (dateId) {},
                    )),
                SizedBox(
                    width: 150,
                    child: Calendar(
                      baseUrl: url,
                      themeColor: Color(0xFF29ABE2),
                      dateController: endDateController,
                      border: InputBorder.none,
                      filled: true,
                      readOnly: true,
                      fillColor: Colors.blueGrey[50],
                      hintText: "End Date",
                      calendarLblText: "To Date",
                      calendarIcon: Icons.calendar_today_rounded,
                      hintStyle: TextStyle(color: Colors.blueGrey[400]),
                      labelStyle: TextStyle(color: Colors.blueGrey[400]),
                      onSelectedDateId: (dateId) {},
                    ))
              ],
            ),
          ],
        ),
      ),
    );
  }

  update() {
    print("Axios");
  }
}
3
likes
0
points
46
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter package for creating and displaying beautiful Nepali calendars.

Repository (GitLab)
View/report issues

License

unknown (license)

Dependencies

dio, flutter, get, intl

More

Packages that depend on nepali_calendar_axios